        /* Main Section Container */
        .coy-section {
            display: flex;
            align-items: center;
            max-width: 1440px;
            margin: 60px auto;
            padding: 0 40px;
            gap: 40px;
            position: relative;
        }

        /* Animations */
        @keyframes slideInFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Left Content Area */
        .coy-left-content {
            flex: 0 0 320px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0; /* Starts hidden for animation */
            animation: slideInFromLeft 1s ease-out forwards; /* Animation applied here */
        }

        .coy-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.1;
            color: #25AAE1;
        }

        .coy-description {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .catalogue-btn {
            align-self: flex-start;
            padding: 12px 24px;
            border: 1px solid #25AAE1;
            background: transparent;
            color: #25AAE1;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .catalogue-btn:hover {
            background: #047796;
            color: #ffffff;
        }

        /* Right Carousel Area */
        .coy-carousel-wrapper {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .coy-carousel-track {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 20px; /* Space for scrollbar if visible */
            /* Hide scrollbar for cleaner look */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }

        .coy-carousel-track::-webkit-scrollbar {
            display: none; /* Chrome, Safari and Opera */
        }

        /* Individual Card */
        .coy-card {
            flex: 0 0 280px;
            height: 480px;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eaeaea;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .coy-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        }

        .coy-card-img {
            height: 55%;
            width: 100%;
            object-fit: cover;
        }

        .coy-card-content {
            height: 45%;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            background-color: #ffffff;
            color: #000000;
            position: relative;
        }

        .coy-year {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
            margin-bottom: 8px;
            display: flex;
            gap: 4px;
        }
        
        .coy-year strong {
            font-weight: 700;
        }

        .coy-color-name {
            font-size: 26px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: #25AAE1; /* Blue heading */
        }

        /* Card Description */
        .coy-card-desc {
            font-size: 13px;
            line-height: 1.5;
            font-weight: 400;
            opacity: 0.8;
            padding-right: 25px; /* Prevent overlap with arrow */
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;  
            overflow: hidden;
        }

        .card-arrow {
            position: absolute;
            bottom: 24px;
            right: 20px;
            font-size: 20px;
            opacity: 0.6;
        }

        /* Navigation Buttons */
        .coy-navigation {
            position: absolute;
            bottom: -60px;
            right: 40px;
            display: flex;
            gap: 12px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #ccc;
            background: #fff;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            transition: all 0.2s ease;
        }

        .nav-btn:hover {
            border-color: #333;
            background: #f5f5f5;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .coy-section {
                flex-direction: column;
                align-items: flex-start;
            }
            .coy-left-content {
                flex: none;
                width: 100%;
                margin-bottom: 20px;
            }
            .coy-carousel-wrapper {
                width: 100%;
            }
            .coy-navigation {
                bottom: -40px;
                right: 20px;
            }
        }

/* Service Process CSS */

      /* Section Container */
        .painting-steps-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            overflow-x: hidden;
        }

        /* Title Styling */
        .section-title {
            font-size: 32px;
            font-weight: 300; /* Light font weight to match the image */
            color: #2c2c2c;
            margin-bottom: 60px;
            letter-spacing: 0.5px;
        }

        /* Steps Layout Container */
        .steps-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 10px;
        }

        /* Individual Step */
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 180px;
            text-align: center;
        }

        /* Circular Image Wrapper */
        .step-image-wrapper {
            position: relative;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            margin-bottom: 20px;
            background-color: #e0e0e0;
            /* Optional subtle shadow to lift the image */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
            transition: transform 0.3s ease;
        }

        .step:hover .step-image-wrapper {
            transform: translateY(-5px); /* Hover effect */
        }

        .step-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        /* Step Number Badge - Hidden by default on Desktop */
        .step-number {
            display: none; 
        }

        /* Text underneath the image */
        .step-text {
            font-size: 16px;
            color: #555;
            line-height: 1.4;
            font-weight: 400;
        }

        /* Arrow Styling */
        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 160px; /* Align centrally with the images */
            width: 40px;
            color: #90a4ae; /* Grey-blue color matching the arrows */
        }

        .step-arrow svg {
            width: 30px;
            height: 24px;
        }

        /* JS Animation Classes */
        .fade-in-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .steps-container {
                flex-wrap: wrap;
                gap: 20px;
            }
            .step-arrow {
                display: none; /* Hide arrows on medium screens for a cleaner grid */
            }
            .step {
                width: calc(33.333% - 20px);
            }
        }

        /* Mobile View Specifics */
        @media (max-width: 600px) {
            .painting-steps-section {
                padding: 50px 15px;
            }
            .steps-container {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px 10px; /* 30px vertical gap, 10px horizontal */
            }
            .step {
                width: calc(50% - 10px); /* 2 Columns Layout */
            }
            .step-image-wrapper {
                width: 130px; /* Slightly scaled down for mobile grid */
                height: 130px;
            }
            .step-arrow {
                display: none; /* Ensure arrows are hidden */
            }
            
            /* Show and position the step numbers on mobile */
            .step-number {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: -2px;
                left: -2px;
                width: 38px;
                height: 38px;
                background-color: rgba(255, 255, 255, 0.85);
                border-radius: 50%;
                font-size: 16px;
                font-weight: 600;
                color: #2c2c2c;
                z-index: 10;
                box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            }
        }