@import url('https://fonts.googleapis.com/css2?family=Allura&family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

        :root {
            --primary-black: #1d1d1f;
            --secondary-black: #000000;
            --white: #ffffff;
            --gray-light: #f5f5f7;
            --gray-medium: #86868b;
            --gray-dark: #424245;
            --blue-accent: #505050;
            --purple-accent: #5856d6;
            --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        body {
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            background-color: var(--secondary-black);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav-container {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav {
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-weight: 200;
            font-style: normal;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }


        .logo img {
    height: 60px;
}

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

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #5f5eb8;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 1px;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="gradient"><stop offset="0%" style="stop-color:rgba(102,126,234,0.1)"/><stop offset="100%" style="stop-color:transparent"/></radialGradient></defs><circle cx="500" cy="500" r="300" fill="url(%23gradient)"/></svg>') center/cover;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .hero-content {
            max-width: 800px;
            padding: 0 4rem;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-family: "Allura", cursive;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(8rem, 5vw, 6rem);
            font-weight: 1000;
            margin-bottom: 4rem;
            line-height: 0.9;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideUp 1s ease-out;
        }

        .hero p {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(1.2rem, 2.5vw, 1.5rem);
            color: var(--gray-light);
            line-height: 1;
            margin-bottom: 2rem;
            animation: slideUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: slideUp 1s ease-out 0.4s both;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

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

        /* Section Styles */
        .section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section img {

            height:200px; 
        }

        .section-title {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            background: var(--gradient-secondary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            position: relative;
            z-index: 2;
        }

        .service-card h3 {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1;
            color: #7e7dcc;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .service-card p {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            line-height: 1;
            color: var(--gray-light);
            position: relative;
            z-index: 2;
        }

        /* Works Section */
        .works-nav {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .works-nav button {
            padding: 0.8rem 1.5rem;
            background: transparent;
            color: var(--gray-medium);
            border: 1px solid var(--gray-dark);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .works-nav button.active,
        .works-nav button:hover {
            background: var(--gradient-primary);
            color: var(--white);
            border-color: transparent;
        }

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

        .work-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .work-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .work-image {
            width: 100%;
            height: 250px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--white);
        }

        .work-content {
            padding: 1.5rem;
        }

        .work-content h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .work-content p {
            color: var(--gray-light);
            font-size: 0.9rem;
        }

        /* Shop Section */
        .shop-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .shop-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .shop-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .shop-image {
            width: 100%;
            height: 200px;
            background: var(--gradient-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--white);
        }

        .shop-content {
            padding: 1.5rem;
        }

        .shop-content h3 {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 1.2rem;
            line-height: 1;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .shop-content p {
            font-size: 0.8rem;
            line-height: 1;
            margin-top: 7%;
            margin-bottom: 3%;
        }
        .shop-price {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--blue-accent);
            margin-bottom: 1rem;
        }

        .shop-button {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            width: 100%;
            padding: 0.8rem;
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .shop-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .testimonial-content {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-style: italic;
            font-size: 1.1rem;
            color: var(--gray-light);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }

        .testimonial-author {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.2rem;
        }

        .author-info h4 {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .author-info p {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        /* About Section */
        .about-content {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 1.2rem;
            color: var(--gray-light);
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: var(--gray-light);
        }

       
            /* Contact Section Styling */
        .section {
        padding: 4rem 2rem;
        font-family: "Lato", sans-serif;
        }

        .section-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
        color: #111;
        }

        /* Form Styling */
        #my-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 2rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        }

        #my-form label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
        }

        #my-form input[type="email"],
        #my-form input[type="text"] {
        font-family: "Lato", sans-serif;
        width: 100%;
        padding: 0.85rem 1rem;
        margin-bottom: 1.5rem;
        border: 1px solid #ccc;
        border-radius: 0.7rem;
        background: rgba(255, 255, 255, 0.7);
        font-size: 1rem;
        transition: border 0.3s;
        color: #111;
        }

        #my-form input[type="text"] {
        min-height: 120px;
        line-height: 1.5;
        }

        #my-form textarea {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 1px solid #7d3cff;
        border-radius: 0.7rem;
        background: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        min-height: 150px;
        resize: vertical;
        color: #111;
        }


        #my-form input:focus {
        outline: none;
        border-color: #7d3cff;
        background-color: rgba(255, 255, 255, 0.9);
        }

        /* Button Styling */
        #my-form-button {
        font-family: "Lato", sans-serif;
        display: inline-block;
        background: #7d3cff;
        color: white;
        font-weight: 600;
        border: none;
        padding: 0.75rem 2rem;
        border-radius: 1rem;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
        }

        #my-form-button:hover {
        background: #6928e0;
        }

        /* Status Text */
        #my-form-status {
        margin-top: 1rem;
        text-align: center;
        font-size: 0.9rem;
        color: #333;
        }


        /* Footer */
        .footer {
            background: var(--primary-black);
            padding: 3rem 2rem 1rem;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--gray-medium);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .copyright {
            font-family: "Lato", sans-serif;
            font-weight: 400;
            font-style: normal;
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

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

            .mobile-menu {
                display: flex;
            }

            .nav-links.active {
                display: flex;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                padding: 2rem;
                gap: 1rem;
            }

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

            .hero p {
                font-size: 1.1rem;
            }

            .section {
                padding: 3rem 1rem;
            }

            .services-grid,
            .works-grid,
            .shop-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .works-nav {
                gap: 1rem;
            }

            .works-nav button {
                padding: 0.6rem 1rem;
                font-size: 0.9rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Utility Classes */
        .hidden {
            display: none;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 1001;
            transition: transform 0.1s ease;
        }
