        :root {
            --accent-orange: #FF7F50;
            --dark-orange: #E66A3A;
            --dark-bg: #1a202c;
            --light-bg: #f7fafc;
        }

        .text-accent-orange {
            color: var(--accent-orange);
        }

        .bg-accent-orange {
            background-color: var(--accent-orange);
        }

        .hover\:text-accent-orange:hover {
            color: var(--accent-orange);
        }

        .hover\:bg-dark-orange:hover {
            background-color: var(--dark-orange);
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-bg);
        }
        
        /* Navbar Transparency & Scroll Effect */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            background-color: transparent;
            transition: background-color 0.4s ease-out, box-shadow 0.4s ease-out;
        }

        .header.scrolled {
            background-color: var(--dark-bg);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Nav Link Underline Effect me hover me color fill */
        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%;
        }

        /* Language Switcher */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1a202c;
            min-width: 140px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 10;
            right: 0;
            border-radius: 8px;
            overflow: hidden;
        }

        .dropdown-content a {
            color: white;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            transition: background-color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: var(--accent-orange);
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Hero Slider */
        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            z-index: 1;
        }

        .hero-slider.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(50%);
        }

        .slider-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 3;
        }

        /* Gallery/Portfolio ZigZag Animation */
        .gallery-item {
            display: flex;
            align-items: center;
            margin-bottom: 4rem;
            opacity: 0;
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
        }

        .gallery-item:nth-child(odd) {
            transform: translateX(-100px);
        }

        .gallery-item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: right;
            transform: translateX(100px);
        }

        .gallery-item.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .gallery-item img,
        .gallery-item canvas {
            width: 50%;
            flex-shrink: 0;
            max-width: 500px;
            transition: box-shadow 0.3s ease-in-out;
        }

        .gallery-item img:hover,
        .gallery-item canvas:hover {
            box-shadow: 0 0 20px rgba(255, 127, 80, 0.8);
        }

        .gallery-item .gallery-description {
            padding: 0 4rem;
            width: 50%;
        }

        @media (max-width: 768px) {
            .gallery-item,
            .gallery-item:nth-child(even),
            .gallery-item:nth-child(odd) {
                flex-direction: column;
                text-align: center;
                transform: translateX(0) !important;
            }

            .gallery-item img,
            .gallery-item canvas,
            .gallery-item .gallery-description {
                width: 100%;
            }

            .gallery-item .gallery-description {
                margin-top: 2rem;
                padding: 0;
            }
        }

        .glow-effect:hover {
            box-shadow: 0 0 15px rgba(255, 127, 80, 0.6);
        }

        /* Mobile Menu */
        #mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--dark-bg);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.8s ease-out;
            transform-origin: top;
            z-index: 40;
            padding-bottom: 2rem;
        }

        #mobile-menu:not(.hidden) {
            transform: translateY(0);
        }

        /* Sigurohuni që menja e celularit është e mbyllur në fillim */
        #mobile-menu.hidden {
            transform: translateY(-100%);
        }
        
        #mobile-menu a {
            color: #ffffff; /* Teksti i bardhë */
            transition: color 0.3s;
        }

        #mobile-menu a:hover {
            color: var(--accent-orange); /* Ngjyra thekse kur kalon maus */
        }

        /* Styling for round color buttons with glow and zoom */
        .color-button {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            border: 2px solid transparent;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .color-button:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(255, 127, 80, 0.8);
        }

        .color-button.active {
            border-color: var(--accent-orange);
            box-shadow: 0 0 20px rgba(255, 127, 80, 0.8);
            transform: scale(1.1);
        }

        .bg-yellow-400 {
            background-color: #FACC15;
        }

        .bg-white {
            background-color: #FFFFFF;
        }

        .bg-teal-500 {
            background-color: #14B8A6;
        }

        .bg-orange-500 {
            background-color: #F97316;
        }

        .bg-purple-500 {
            background-color: #A855F7;
        }

        .bg-teal-300 {
            background-color: #5EEAD4;
        }

        .bg-green-600 {
            background-color: #16A34A;
        }

        .bg-purple-800 {
            background-color: #6B21A8;
        }

        .bg-red-800 {
            background-color: #991B1B;
        }

        .bg-black {
            background-color: #000000;
        }

        .bg-dark-brown {
            background-color: #4C2E0A;
        }

        .bg-dark-purple {
            background-color: #3C0A4C;
        }

        /* Form styling */
        .form-input {
            background-color: #e2e8f0;
            color: #1a202c;
        }

        .logo-text {
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
            transition: transform 0.3s ease-in-out;
        }

        .logo-text:hover {
            transform: scale(1.05);
        }
        
        /* New button for "See more" */
        .see-more-btn {
            display: inline-block;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 600;
            color: var(--accent-orange);
            background-color: transparent;
            border: 2px solid var(--accent-orange);
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-top: 1rem;
        }

        .see-more-btn:hover {
            background-color: var(--accent-orange);
            color: white;
            box-shadow: 0 4px 10px rgba(255, 127, 80, 0.3);
        }
        .gallery-item .title-and-colors {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .gallery-item:nth-child(even) .title-and-colors {
            flex-direction: row-reverse;
            justify-content: flex-end;
            text-align: right;
            gap: 1rem;
        }
        .gallery-item:nth-child(even) .title-and-colors .color-buttons {
            flex-direction: row-reverse;
        }
        .gallery-item .color-buttons {
            display: flex;
            gap: 0.75rem;
        }
