
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            user-select: none;
        }

        :root {
            --primary: #2f056b;
            --accent: #f5d66a;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-600: #4b5563;
            --purple-light: rgba(47, 5, 107, 0.05);
            --yellow-light: rgba(245, 214, 106, 0.1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family:  "Urbanist","Afacad",-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(47, 5, 107, 0.1);
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary);
        }

        .logo  img {
            height: 1.2em;
            vertical-align: middle;
        }

        .logo-dot {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary);
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #21044a;
            font-weight: bold;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            padding: 0.5rem 1.5rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: medium;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .cta-btn:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 6rem 1rem 4rem;
            background: linear-gradient(135deg, white 0%, rgba(245, 214, 106, 0.05) 50%, white 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            animation: float 20s ease-in-out infinite;
        }

        .hero-bg-circle-1 {
            top: 10%;
            right: 10%;
            width: 400px;
            height: 400px;
            background: var(--purple-light);
        }

        .hero-bg-circle-2 {
            bottom: 10%;
            left: 10%;
            width: 350px;
            height: 350px;
            background: var(--yellow-light);
            animation-delay: -5s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .floating-shape {
            position: absolute;
            border: 4px solid rgba(47, 5, 107, 0.2);
            animation: rotate 8s linear infinite;
        }

        .shape-1 {
            top: 20%;
            left: 15%;
            width: 60px;
            height: 60px;
            border-radius: 8px;
        }

        .shape-2 {
            bottom: 20%;
            right: 20%;
            width: 80px;
            height: 80px;
            border: 4px solid rgba(245, 214, 106, 0.4);
        }

        @keyframes rotate {
            0% { transform: rotate(0deg) translateY(0); }
            50% { transform: rotate(180deg) translateY(-20px); }
            100% { transform: rotate(360deg) translateY(0); }
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tag {
            color: #2f056b;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: inline-block;
            animation: fadeIn 1s ease-out 0.2s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero h1 {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: 2px;
        }

        .hero .highlight {
            position: relative;
            display: inline-block;
            width: 4em;
        }

        .hero .highlight::after {
            content: '';
            position: absolute;
            bottom: 0.5rem;
            left: 0;
            width: 0;
            height: 12px;
            background:rgb(3 169 244 / 41%);
            z-index: -1;
            rotate: 355deg;
            border-radius: 12px;
            animation: underline 1s ease-out 1s forwards;
        }

        @keyframes underline {
            to { width: 100%; }
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .btn-primary {
            padding: 1rem 2rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: larger;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-primary:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .btn-outline {
            padding: 1rem 2rem;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 50px;
            cursor: pointer;
            font-family: "Afacad";
            font-size: larger;
            transition: all 0.3s;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Section Styles */
        section {
            padding: 6rem 1rem;
            position: relative;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .section-header.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-tag {
            color:#2f056b;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            background: linear-gradient(to right, #330a6e 0%, #480a6e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-header p {
            color: var(--gray-600);
            font-size: 1.125rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: linear-gradient(135deg, white 0%, rgba(245, 214, 106, 0.05) 100%);
            border: 1px solid rgba(47, 5, 107, 0.1);
            border-radius: 16px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
        }

        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(47, 5, 107, 0.3);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: transform 0.6s;
        }

        .service-card:hover .service-icon {
            transform: rotate(360deg);
        }

        .service-card h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }

        .service-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Products Grid */
        #products {
            background: linear-gradient(135deg, white 0%, rgba(47, 5, 107, 0.02) 50%, white 100%);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 2rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .product-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(47, 5, 107, 0.2);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }

        .product-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            transition: transform 0.6s;
        }

        .product-card:hover .product-icon {
            transform: rotate(360deg) scale(1.1);
        }

        .product-badge {
            display: inline-block;
            padding: 0.25rem 1rem;
            background: rgba(245, 214, 106, 0.2);
            color: var(--primary);
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .product-badge-wip {
            display: inline-block;
            padding: 0.25rem 1rem;
            border: 2px solid rgba(245, 214, 106, 0.2);
            color: #a9a9a9;
            background: none;
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .product-card h3 {
            color: var(--primary);
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .product-card p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
        }

        .product-features li {
            color: var(--gray-600);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }

        .product-features li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* Portfolio Grid */
        #work {
            background: linear-gradient(135deg, rgba(245, 214, 106, 0.05) 0%, white 50%, rgba(47, 5, 107, 0.03) 100%);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .portfolio-card {
            height: 400px;
            border-radius: 16px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.3s;
            cursor: pointer;
        }

        .portfolio-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .portfolio-card:hover {
            transform: scale(1.02);
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 5%;
            right: 2rem;
            width: 120px;
            height: 120px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }

        .portfolio-card::after {
            content: '';
            position: absolute;
            bottom: 55%;
            left: 2rem;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: rotate 8s linear infinite reverse;
        }

        .portfolio-content {
            position: relative;
            z-index: 10;
            color: white;
        }

        .portfolio-category {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .portfolio-card h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .portfolio-card p {
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, var(--primary) 0%, #4a0a9e 100%);
            color: white;
        }

        #contact .section-tag {
            color: var(--accent);
        }

        #contact h2,
        #contact .section-header p {
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-group select option {
            background: var(--primary);
        }

        .btn-submit {
            width: 100%;
            padding: 1rem 2rem;
            background: var(--accent);
            color: var(--primary);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: transform 0.3s;
        }

        .info-card:hover {
            transform: translateX(10px);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            background: rgba(245, 214, 106, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            text-decoration: none;
            color: white;
            font-size: 1.25rem;
        }

        .social-link:hover {
            background: var(--accent);
            color: var(--primary);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 3rem 1rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand h3 {
            font-size: 2.5rem;
            margin-bottom: 0.1rem;
            letter-spacing: 2px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                border-top: 1px solid rgba(47, 5, 107, 0.1);
                padding: 1rem;
                gap: 0;
            }

            .nav-links.active a {
                padding: 1rem;
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-brand h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                letter-spacing: 2px;
            }
        }