 
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

        :root {
            --accent-orange: #ff6600;
            --dark-bg: #212529;
            --light-bg: #f8f9fa;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: #333;
        }

        .bg-dark-bg { background-color: var(--dark-bg); }
        .bg-light-bg { background-color: var(--light-bg); }
        .bg-accent-orange { background-color: var(--accent-orange); }
        .hover\:bg-dark-orange:hover { background-color: #e65c00; }
        .text-dark-bg { color: var(--dark-bg); }
        .text-accent-orange { color: var(--accent-orange); }
        .text-gray-400 { color: #ced4da; }
        .text-gray-500 { color: #adb5bd; }

        .service-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .header-bg {
            background-color: transparent;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .header-scrolled {
            background-color: var(--dark-bg);
            position: fixed;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .hero-section {
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: background-image 0.5s ease-in-out;
        }

        .hero-overlay {
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-color-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .color-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid white;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .color-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fadeInDown {
            animation: fadeInDown 1s ease-out;
        }

        header nav ul a {
            position: relative;
            padding: 10px 0;
            transition: color 0.3s ease-in-out;
        }

        header nav ul a:hover {
            color: var(--accent-orange);
        }

        header nav ul a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--accent-orange);
            transition: width 0.3s ease-in-out;
        }

        header nav ul a:hover::after {
            width: 100%;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #212529;
            min-width: 120px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            right: 0;
            border-radius: 8px;
            overflow: hidden;
            padding: 8px 0;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: #ff6600;
        }

        .dropdown:hover .dropdown-content, .dropdown.active .dropdown-content {
            display: block;
        }

        #mobile-menu {
            transition: transform 0.3s ease-in-out;
            transform: translateX(100%);
        }

        #mobile-menu.open {
            transform: translateX(0);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(1, minmax(0, 1fr));
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1.5rem;
            }
        }

        @media (min-width: 1024px) {
            .gallery-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 1.5rem;
            }
        }

        .gallery-item.hidden {
            display: none;
        }

        .filter-button.active {
            background-color: var(--accent-orange);
            color: white;
        }

        .filter-button {
            transition: all 0.3s;
        }

        .filter-button:hover {
            background-color: var(--accent-orange);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .gallery-item {
            width: 100%;
            height: 500px;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 102, 0, 0.4);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            transform: translateY(100%);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .overlay-text {
            color: white;
            font-size: 1rem;
            font-weight: 400;
            text-align: center;
        }

        .color-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .color-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .color-palette-section {
            position: relative;
            overflow: hidden;
            background-color: var(--light-bg);
            padding: 3rem 0;
        }
        
        .color-palette-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }
        
        @media (min-width: 768px) {
            .color-palette-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        .palette-image-container {
            width: 100%;
            min-height: 600px; /* Made the photo way bigger vertically */
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            transition: background-image 0.5s ease-in-out;
        }
        
        .palette-button-group {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            padding: 1rem 0;
        }
        
        @media (min-width: 768px) {
            .palette-button-group {
                flex-direction: column;
                justify-content: center;
                align-items: flex-start; /* Aligned to the left */
                height: 100%;
            }
        }
        
        .palette-button-square {
            width: 60px;
            height: 60px;
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            border-radius: 8px;
        }
        
        .palette-button-square:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            border-color: var(--accent-orange);
        }

        .language-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 9999px;
            background-color: var(--dark-bg);
            color: white;
            border: 2px solid white;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s;
        }
        
        .language-button:hover {
            background-color: white;
            color: var(--dark-bg);
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--dark-bg);
            border-radius: 8px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 100;
            min-width: 150px;
            overflow: hidden;
            margin-top: 8px;
        }

        .language-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 16px;
            color: white;
            transition: background-color 0.3s;
        }
        
        .language-dropdown a:hover {
            background-color: var(--accent-orange);
        }
        
        .vibrant-palette-card {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-height: 150px;
        }

        .vibrant-palette-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .color-swatch {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            flex-shrink: 0;
            border: 3px solid #f0f0f0;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }