        /* 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);
            }
        }
        /* Scoped to prevent conflicting with existing Ventac styles */
        .fashion-section {
            padding: 100px 5%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
        }

        .fashion-container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            align-items: stretch; /* Stretches both columns to the exact same height */
            gap: 60px; /* Space between text and image */
            margin: 0 auto;
        }

        .fashion-content-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Keeps the text block perfectly centered vertically */
        }

        .fashion-kicker {
            display: block;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #00AEEF; /* Light 'little blue' accent */
            margin-bottom: 12px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
        }

        .fashion-heading {
            font-size: 42px;
            font-weight: 700;
            color: #222222; /* Dark color for solid contrast */
            margin-bottom: 20px;
            line-height: 1.2;
            font-family: 'Montserrat', sans-serif;
        }

        .fashion-description {
            font-size: 15px;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 35px;
            font-family: 'Montserrat', sans-serif;
        }

        .fashion-button-group {
            display: flex;
            gap: 15px;
        }

        .fashion-btn {
            padding: 14px 28px;
            font-size: 13px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            cursor: pointer;
            border: 2px solid #00AEEF; /* Border matches the light blue */
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
            border-radius: 0;
            outline: none;
            background: transparent;
        }

        .fashion-btn-primary {
            background-color: #00AEEF;
            color: #ffffff;
        }

        .fashion-btn-primary:hover {
            background-color: #008CDB; /* Hovers to a slightly deeper blue */
            border-color: #008CDB;
            color: #ffffff;
        }

        .fashion-btn-secondary {
            background-color: #ffffff;
            color: #00AEEF;
        }

        .fashion-btn-secondary:hover {
            background-color: #00AEEF;
            color: #ffffff;
        }

        .fashion-image-column {
            flex: 1;
            position: relative; /* Sets up boundary for the absolute image */
        }

        .fashion-image-column img {
            position: absolute; /* Takes image out of flow so it strictly follows the text's height */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center top; /* Centers the crop slightly biased to the top */
        }

        /* RESPONSIVE DESIGN FOR FASHION SECTION */
        @media (max-width: 900px) {
            .fashion-container {
                flex-direction: column-reverse; /* Stacks image above text on smaller screens */
                gap: 40px;
            }

            .fashion-content-column {
                text-align: center;
            }

            .fashion-button-group {
                justify-content: center;
            }

            .fashion-heading {
                font-size: 36px;
            }
            
            .fashion-image-column {
                width: 100%;
                height: 450px; /* Provides a fixed height for the image on mobile screens */
            }
            .fashion-image-column img {
                position: relative; /* Return to relative for mobile fixed height */
            }
        }

        @media (max-width: 480px) {
            .fashion-button-group {
                flex-direction: column;
                gap: 15px;
            }
            .fashion-btn {
                width: 100%;
            }
            .fashion-heading {
                font-size: 32px;
            }
        }        

      /* Hero Section Layout */
        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 2rem 0;
            background-color: #ffffff; /* Solid white background */
            font-family: 'Montserrat', sans-serif;
        }

        /* Typography */
        .carousel-title {
            font-size: clamp(2.5rem, 5vw, 4rem); /* Increased Title Size */
            font-weight: 500;
            margin-bottom: 0.5rem; /* Reduced to make room for paragraph */
            z-index: 20;
            text-align: center;
            color: #222222;
        }

        .carousel-title span {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-weight: 600;
            transition: opacity 0.3s ease;
        }

        .carousel-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.5rem); /* Increased Subtitle Size */
            color: #666666;
            margin-bottom: 2.5rem;
            z-index: 20;
            text-align: center;
            max-width: 90%;
            /* Ensures it stays on a single line where possible */
            white-space: nowrap; 
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Carousel Structure */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            height: 60vh;
            min-height: 450px;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            z-index: 10;
        }

        .carousel-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            perspective: 1200px; /* Enables the 3D depth */
            transform-style: preserve-3d;
            z-index: 10; /* Ensures models render ON TOP */
        }

        /* Carousel Items & 3D Positioning Logic */
        .carousel-item {
            position: absolute;
            bottom: 40px; 
            left: 50%;
            width: 400px; /* Make images larger on desktop */
            height: 350px; 
            display: flex;
            justify-content: center;
            align-items: flex-end;
            transform-origin: bottom center;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                        opacity 0.6s ease, 
                        filter 0.6s ease;
            will-change: transform, opacity, filter;
        }

        /* Image Styles */
        .carousel-item img {
            width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: drop-shadow(0px 15px 20px rgba(0,0,0,0.15)); /* Softened shadow for white background */
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        /* Position 0: Center (Active) */
        .carousel-item[data-pos="0"] {
            transform: translateX(-50%) scale(1) translateZ(0);
            opacity: 1;
            z-index: 10;
            filter: blur(0);
        }

        /* Position -1: Left */
        .carousel-item[data-pos="-1"] {
            transform: translateX(calc(-50% - 25vw)) scale(0.75) translateZ(-100px); /* Slightly increased adjacent scale */
            opacity: 0.6;
            z-index: 5;
            filter: blur(2px);
            cursor: pointer;
        }

        /* Position 1: Right */
        .carousel-item[data-pos="1"] {
            transform: translateX(calc(-50% + 25vw)) scale(0.75) translateZ(-100px); /* Slightly increased adjacent scale */
            opacity: 0.6;
            z-index: 5;
            filter: blur(2px); 
            cursor: pointer;
        }

        /* Position -2: Far Left */
        .carousel-item[data-pos="-2"] {
            transform: translateX(calc(-50% - 42vw)) scale(0.5) translateZ(-250px);
            opacity: 0.2;
            z-index: 2;
            filter: blur(5px);
            cursor: pointer;
        }

        /* Position 2: Far Right */
        .carousel-item[data-pos="2"] {
            transform: translateX(calc(-50% + 42vw)) scale(0.5) translateZ(-250px);
            opacity: 0.2;
            z-index: 2;
            filter: blur(5px);
            cursor: pointer;
        }

        /* Explore Button */
        .explore-btn {
            position: absolute;
            bottom: 10px; 
            left: 50%;
            transform: translateX(-50%);
            background-color: #2a75d3; /* Solid blue */
            color: #fff;
            padding: 16px 45px; /* Increased padding for a larger size */
            border-radius: 35px; /* Slightly more rounded to match the larger size */
            border: none; /* Removed border for a cleaner look */
            box-shadow: 0 10px 20px rgba(42, 117, 211, 0.3); /* Softer, colored drop shadow */
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 14px; /* Increased font size */
            letter-spacing: 1px;
            z-index: 20; /* Highest z-index to stay clickable over models */
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .explore-btn:hover {
            transform: translateX(-50%) scale(1.05);
            box-shadow: 0 15px 25px rgba(42, 117, 211, 0.4);
            background-color: #1a4a7c; /* Darker solid blue on hover */
        }

        /* Navigation Arrows */
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.05); /* Adjusted for white background */
            border: 1px solid rgba(0, 0, 0, 0.1); /* Adjusted for white background */
            color: #333; /* Dark text */
            font-size: 16px;
            cursor: pointer;
            z-index: 30;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .carousel-nav-btn:hover {
            background: rgba(0, 0, 0, 0.1);
            transform: translateY(-50%) scale(1.1);
        }

        .nav-prev { left: 4%; }
        .nav-next { right: 4%; }

        /* =========================================
           Responsive Breakpoints
           ========================================= */
        
        /* Tablet View */
        @media (max-width: 992px) {
            .carousel-item[data-pos="-1"] { transform: translateX(calc(-50% - 32vw)) scale(0.65) translateZ(-100px); }
            .carousel-item[data-pos="1"] { transform: translateX(calc(-50% + 32vw)) scale(0.65) translateZ(-100px); }
            
            /* Hide extreme items on smaller tablets */
            .carousel-item[data-pos="-2"], 
            .carousel-item[data-pos="2"] { 
                opacity: 0; 
                pointer-events: none; 
            }
            
            .carousel-item { width: 250px; height: 300px; bottom: 35px; } 
        }

        /* Mobile View (Heavily Adjusted for Horizontal AC Layout) */
        @media (max-width: 576px) {
            /* Restored arrows and made them fit smaller screens */
            .carousel-nav-btn { 
                display: flex; 
                width: 35px;
                height: 35px;
                font-size: 14px;
                top: 45%;
            }
            .nav-prev { left: 2%; }
            .nav-next { right: 2%; }

            /* Fixes the large vertical gap above the carousel */
            .carousel-container {
                min-height: 280px; /* Reduced from 450px to remove dead space */
                height: 45vh;
            }
            
            .carousel-title {
                margin-bottom: 0.25rem; /* Tighter spacing below the title */
            }
            
            .carousel-subtitle {
                margin-bottom: 1rem;
                white-space: normal; /* Allow slight wrapping on very small screens if needed */
            }

            /* Brought side items closer (from 40vw to 30vw) and increased scale for better visibility */
            .carousel-item[data-pos="-1"] { transform: translateX(calc(-50% - 32vw)) scale(0.6) translateZ(-80px); opacity: 0.4; }
            .carousel-item[data-pos="1"] { transform: translateX(calc(-50% + 32vw)) scale(0.6) translateZ(-80px); opacity: 0.4; }
            
            .carousel-item { 
                width: 220px; 
                height: 200px; /* Shortened container height for horizontal objects */
                bottom: 35px; 
            } 
            
            .explore-btn { 
                padding: 12px 30px; /* Increased from previous mobile padding */
                font-size: 12px; /* Increased font size for mobile */
                bottom: 5px; /* Lifted slightly to adjust to mobile container */
            }
        }       

      .subscribe-section-wrapper {
            background-color: #f4f7f6; /* Light background to make the section pop */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            width: 100%;
        }

        .subscribe-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 900px;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .subscribe-image-section {
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            z-index: 1;
        }

        .subscribe-image-section img {
            width: 100%;
            height: 350px; /* Managed smaller height for mobile */
            object-fit: cover; /* Ensures image covers the area without distorting */
            object-position: center;
            display: block;
        }

        .subscribe-card-section {
            background-color: #ffffff;
            border-radius: 15px;
            padding: 40px 30px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            text-align: center;
            z-index: 2;
            margin-top: -60px; /* Pulls the card up over the image on mobile */
        }

        /* Typography */
        .subscribe-card-section h2 {
            color: #348ba5; /* Dark blue */
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .subscribe-card-section p.subtitle {
            color: #555555;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .subscribe-card-section a {
            color: #7bb1bc; /* Light blue */
            text-decoration: none;
        }

        .subscribe-card-section a:hover {
            text-decoration: underline;
        }

        /* Form Grid */
        .subscribe-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px 15px;
            margin-bottom: 25px;
        }

        /* Form Styles */
        .subscribe-form-group {
            text-align: left;
        }

        .subscribe-form-group label {
            display: block;
            font-size: 12px;
            color: #333333;
            margin-bottom: 8px;
        }

        .subscribe-form-group input,
        .subscribe-form-group textarea {
            width: 100%;
            border: none;
            border-bottom: 1.5px solid #d1d1d1;
            padding: 8px 0;
            font-size: 14px;
            color: #333333;
            outline: none;
            transition: border-color 0.3s ease;
            background-color: transparent;
            font-family: inherit;
        }

        .subscribe-form-group textarea {
            resize: vertical;
            min-height: 35px;
        }

        .subscribe-form-group input::placeholder,
        .subscribe-form-group textarea::placeholder {
            color: #a0a0a0;
        }

        .subscribe-form-group input:focus,
        .subscribe-form-group textarea:focus {
            border-bottom-color: #8bbcb6; /* Teal color on focus */
        }

        .subscribe-submit-btn {
            width: 100%;
            background-color: #327d9b; /* Teal */
            color: #ffffff;
            border: none;
            border-radius: 25px;
            padding: 12px 0;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-bottom: 25px;
        }

        .subscribe-submit-btn:hover {
            background-color: #12526b;
        }

        /* Form Message Box */
        .subscribe-message-box {
            display: none;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 20px;
            font-size: 14px;
            font-weight: bold;
        }

        .subscribe-message-success {
            background-color: #e6f5f3;
            color: #4a8b84;
            border: 1px solid #8bbcb6;
        }

        /* Desktop Media Query */
        @media (min-width: 800px) {
            .subscribe-container {
                flex-direction: row;
                justify-content: center;
                align-items: center;
            }

            .subscribe-image-section {
                max-width: 450px;
            }

            .subscribe-image-section img {
                height: 450px; /* Managed smaller height for desktop so card extends further down */
            }

            .subscribe-card-section {
                margin-top: 0;
                margin-left: -60px; /* Pulls the card left over the image on desktop */
                width: 55%;
                padding: 50px 40px;
            }

            /* Display form in 2 columns on desktop */
            .subscribe-form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
  
        .painting-steps-section {
            padding: 60px 0; /* Ensuring adequate spacing around the section */
        }
        
        .step-text {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(14px, 1.2vw + 6px, 18px); /* Responsive fluid typography */
            font-weight: 600;
            line-height: 1.5;
            color: #333333;
            text-align: center;
        }
        
        .painting-steps-section .section-title {
            font-family: 'Montserrat', sans-serif;
        }

        @media (max-width: 992px) {
            .step-text {
                font-size: 15px; /* Tablet view */
            }
        }

        @media (max-width: 576px) {
            .step-text {
                font-size: 14px; /* Mobile view */
            }
        }        
        /* Brands Banner (Marquee) */
        .brands-section {
            background-color: #3793b8;
            padding: 15px 0; /* Decreased padding to reduce bar height */
            overflow: hidden; /* Crucial for hiding the off-screen logos */
            position: relative;
        }

        .brands-marquee {
            display: flex;
            width: max-content;
            animation: marquee-scroll 12s linear infinite; /* Marquee speed */
        }

        .brands-marquee:hover {
            animation-play-state: paused;
        }

        .brands-track {
            display: flex;
            align-items: center;
            gap: 80px;
            padding-right: 80px; /* Matching the gap for seamless transition */
        }

        @keyframes marquee-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Daikin Image Logo Styles */
        .brand-item {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.9;
            transition: opacity 0.3s;
        }
        
        .brand-item:hover {
            opacity: 1;
        }

        .daikin-img {
            height: 45px; /* Decreased image height proportionally */
            width: auto;
            object-fit: contain;
            /* Uncomment the line below if the logo from ventac.in is dark and you want it to appear pure white */
            /* filter: brightness(0) invert(1); */
        }        