        .ar-slider {
            position: relative;
            width: 100%;
            height: 90vh;
            /* full screen */
            overflow: hidden;
        }

        .ar-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .ar-slide.active {
            opacity: 1;
        }

        /* Overlay container */
        .ar-slider-content {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%);
            color: white;
            max-width: 600px;
            z-index: 10;
        }

        .ar-slider-content h1 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 15px;
            letter-spacing: 2px;
        }

        .ar-slider-content p {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: bold;
        }

        /* about */
        .ar-about-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 80px 10%;
        }

        .ar-about-content {
            flex: 1;
        }

        .ar-about-subtitle {
            font-size: 12px;
            color: #777;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .ar-about-title {
            margin-bottom: 20px;
            font-size: 34px;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #111;
        }

        .ar-about-title span {
            color: #fbb03b;
            /* Accent color */
        }

        .ar-about-text {
            font-size: 15px;
            color: #333;
            margin-bottom: 15px;
        }

        .ar-about-btn {
            display: inline-block;
            padding: 12px 24px;
            background: #111;
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 14px;
            border-radius: 4px;
            margin-top: 10px;
            transition: background 0.3s;
            text-decoration: none;
        }

        .ar-about-btn:hover {
            background: #333;
        }

        .ar-about-image {
            flex: 1;
        }

        .ar-about-image img {
            width: 100%;
            border-radius: 6px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .ar-about-section {
                flex-direction: column;
                text-align: center;
            }

        }

        /* tab section */
        .ar-tabs {
            padding: 50px 0 80px;
        }

        .ar-tab-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            border-bottom: 1px solid #ddd;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .ar-tab-buttons button {
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            padding: 12px 20px;
            color: #333;
            position: relative;
            transition: color 0.3s ease;
        }

        .ar-tab-buttons button:hover {
            color: #111;
        }

        .ar-tab-buttons button.active {
            color: #111;
            font-weight: bold;
        }

        .ar-tab-buttons button.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            right: 0;
            height: 2px;
            background: #111;
        }

        /* Tab Content */
        .ar-tab-content {
            display: none;
            position: relative;
        }

        .ar-tab-content.active {
            display: block;
        }

        .ar-hidden {
            display: none !important;
        }

        .image-slider {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            height: 520px;
        }

        @media (max-width: 768px) {
            .image-slider {
                height: 400px;
            }
        }

        @media (max-width: 480px) {
            .image-slider {
                grid-template-columns: 1fr;
            }
        }

        /* Reveal container */
        .reveal {
            position: relative;
            overflow: hidden;
        }

        .reveal img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            display: block;
        }

        /* process section */
        .ar-process-section {
            padding: 50px 0;
            margin: auto;
            text-align: center;
        }

        .ar-process-header {
            margin-bottom: 30px;
        }

        .ar-process-header h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .ar-process-header p {
            font-size: 16px;
            color: #555;
        }

        .ar-process-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .ar-process-card {
            position: relative;
            height: 200px;
            cursor: pointer;
            perspective: 1000px;
        }

        .ar-process-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .ar-process-card:hover .ar-process-card-inner {
            transform: rotateY(180deg);
        }

        .ar-process-card-front,
        .ar-process-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            border-radius: 2px;
            box-shadow: 0 -1px 15px rgba(0, 0, 0, .1);
            background: #fff;
            padding: 20px;
        }

        .ar-process-card-front img {
            width: 40px;
            margin-bottom: 15px;
        }

        .ar-process-card-front h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .ar-process-card-back {
            background: linear-gradient(to bottom, #111, #333);
            color: #fff;
            transform: rotateY(180deg);
            font-size: 14px;
            line-height: 1.5;
            padding: 20px;
        }

        /* be spoke */
        .be-spoke-section {
            text-align: center;
            padding: 80px 10px;
        }

        .be-spoke-section h2 {
            font-size: 34px;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #111;
        }

        .be-spoke-section h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            color: #c9a449;
        }

        .be-spoke-section p {
            max-width: 850px;
            margin: 0 auto 50px auto;
            line-height: 1.7;
            font-size: 16px;
            color: #444;
        }

        .be-spoke-cards {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 5px;
        }

        .be-spoke-card {
            position: relative;
            overflow: hidden;
            height: 320px;
            border-radius: 2px;
            background: #000;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(40px);
            opacity: 0;
            transition: all 0.8s ease;
        }

        .be-spoke-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .be-spoke-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .be-spoke-card:hover img {
            transform: scale(1.15);
        }

        .be-spoke-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
            color: #fff;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1.5px;
            padding: 20px;
            text-transform: uppercase;
            transition: bottom 0.5s ease;
        }



        /* Premium Glow Hover Effect */
        .be-spoke-card:hover {
            box-shadow: 0 15px 35px rgba(201, 164, 73, 0.5);
        }

        /* ar kitchen layout */
        .ar-kitchen-layout {
            display: flex;
            height: 100vh;
            width: 100%;
        }

        /* Left side - Image section */
        .ar-image-section {
            flex: 0 0 60%;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .ar-image-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f0f0 0%, #d9d9d9 100%);
            position: relative;
        }

        .ar-placeholder-content {
            text-align: center;
            color: #888;
        }


        .ar-placeholder-content p {
            font-size: 1.2rem;
            font-weight: 500;
            opacity: 0.7;
        }

        /* Right side - Content section */
        .ar-content-section {
            flex: 0 0 40%;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem;
        }

        .ar-content-container {
            max-width: 500px;
            width: 100%;
        }

        /* Typography */
        .ar-main-heading {
            background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(224, 198, 81, 0.06) 100%);
            padding: 40px;
            margin-left: -150px;
            position: relative;
            z-index: 111;
            font-size: 34px;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #111;
        }

        .ar-heading-part {
            display: block;
        }


        .ar-description {
            font-size: 1.125rem;
            line-height: 1.6;
            color: #666666;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }



        /* Button styles */
        .cta-button {
            background-color: #000000;
            color: #ffffff;
            font-size: 1.1rem;
            font-weight: 600;
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            letter-spacing: 0.025em;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background-color: #1a1a1a;
        }

        .cta-button:active {
            transform: translateY(0);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .cta-button:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .kitchen-layout {
                flex-direction: column;
            }

            .image-section,
            .content-section {
                flex: 1;
            }

            .content-section {
                padding: 2rem;
            }

            .main-heading {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            body {
                overflow-y: auto;
            }

            .kitchen-layout {
                min-height: 100vh;
                height: auto;
            }

            .image-section {
                min-height: 50vh;
            }

            .content-section {
                padding: 1.5rem;
            }

            .main-heading {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }

            .description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .cta-button {
                width: 100%;
                padding: 1rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .content-section {
                padding: 1rem;
            }

            .main-heading {
                font-size: 1.75rem;
            }

            .description {
                font-size: 0.95rem;
            }

            .placeholder-icon {
                font-size: 2.5rem;
            }

            .placeholder-content p {
                font-size: 1rem;
            }
        }

        /* Animation for smooth transitions */
        .content-container {
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Focus states for accessibility */
        .cta-button:focus-visible {
            outline: 2px solid #ffd700;
            outline-offset: 2px;
        }

        /* kitchen cabinet cta */
        .kitchen-cta {
            position: relative;
            width: 100%;
            height: 360px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-size: cover;
            background-position: center;
            transition: background-position 0.5s ease;
            margin: 100px 0;
        }

        .kitchen-cta:hover {
            background-position: top left;
            /* Subtle scale effect */
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: rgba(20, 20, 20, 0.699);
            width: 100%;
            color: #fff;
            margin: auto;
        }

        .kitchen-cta-content {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 111;
            width: 100%;
        }

        .kitchen-cta h3 {
            font-size: 28px;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 1px;
            line-height: 1.3;
            text-align: center;
            color: #fff;
        }

        .kitchen-cta .subtitle {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 10px;
            color: #e5e5e5;
            text-align: center;
        }

        .kitchen-cta-btn {
            font-size: 16px;
            border-bottom: 1px solid #fff;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            margin-top: 10px;
            transition: all .4s ease;
        }

        .kitchen-cta-btn:hover {
            transform: scale(1.1)
        }

        /* gallery */
        .ar-gallery-section {
            padding: 50px 0 100px;
        }

        .ar-gallery-sub-head {
            color: #6b7177;
            font-style: normal;
            font-weight: 500;
            text-transform: uppercase;
            text-align: center;
        }

        .ar-gallery-head {
            font-size: 34px;
            letter-spacing: 2px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #111;
            text-align:center;
            margin-bottom: 40px;
        }

        .ar-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .ar-gallery a {
            display: block;
            overflow: hidden;
            cursor: pointer;
        }

        .ar-gallery img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
            display: block;
        }

        .ar-gallery a:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 480px) {
            .ar-gallery img {
                height: 150px;
            }
        }

        @media (max-width:999px){
            .be-spoke-cards{
                grid-template-columns: repeat(3, 1fr);
            }
            .ar-image-section {
                flex: 0 0 40%;
            }
            .ar-content-section {
                flex: 0 0 60%;
                padding:15px;
            }
            .ar-gallery img{
                height:300px;
            }
            .ar-gallery-section {
                padding: 0px 0 50px;
            }
            .ar-kitchen-layout{
                height:unset;
            }
            .ar-about-image img{
                height:500px;
            }
        }
        @media (max-width:767px){
            .ar-about-section{
                padding:50px 7% 0;
            }
            .ar-tab-buttons{
                gap:15px;
            }
            .ar-process-section{
                padding:20px 10px;
            }
            .ar-about-image img{
                height:340px;
            }
            .be-spoke-card{
                height:220px;
            }
            .be-spoke-cards{
                grid-template-columns: repeat(2, 1fr);
            }
            .ar-content-section{
                padding:10px;
                flex: 0 0 100%;
            }
            .ar-main-heading{
                padding:0;
                margin-left:unset;
            }
            .ar-image-section{
                display: none;
            }
            .ar-gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .ar-gallery img{
                height:200px;
            }
            .ar-slider{
                height: 60vh;
            }
        }