
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .gradient-bg {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
        }
        .service-card {
            background: rgba(31, 41, 55, 0.7);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        .pc-image {
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }
        .logo-font {
            font-family: 'Arial', sans-serif;
            letter-spacing: 1px;
        }
        
        /* Gallery Styles */
        .design-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
        .design-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            cursor: pointer;
            aspect-ratio: 1/1;
            transition: all 0.3s ease;
        }
        .design-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 15px rgb(252, 253, 255);
        }
        .design-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .design-item:hover img {
            transform: scale(1.1);
        }
        .design-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.5rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .design-item:hover .design-caption {
            transform: translateY(0);
        }
        
        /* Modal Styles */
        .gallery-modal {
            display: none;
            position: fixed;
            z-index: 100;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            overflow: auto;
        }
        .modal-content {
            margin: auto;
            display: block;
            width: 80%;
            max-width: 1200px;
            max-height: 80vh;
            object-fit: contain;
        }
        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }
        .close:hover {
            color: #3b82f6;
        }
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -50px;
            color: white;
            font-weight: bold;
            font-size: 20px;
            transition: 0.3s;
            user-select: none;
            -webkit-user-select: none;
        }
        .next {
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev {
            left: 0;
            border-radius: 0 3px 3px 0;
        }
        .prev:hover, .next:hover {
            background-color: rgba(59, 130, 246, 0.8);
        }
        .caption-container {
            text-align: center;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 10px;
            color: white;
        }
        .demo {
            opacity: 0.6;
            height: 60px;
            width: 60px;
            object-fit: cover;
            margin: 2px;
            cursor: pointer;
        }
        .active, .demo:hover {
            opacity: 1;
        }
        .gallery-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 10px;
        }
    