 :root {
            --primary: #6c63ff;
            --secondary: #4d44db;
            --dark: #2a2a72;
            --light: #f8f9fa;
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
            --dark-bg: #1a1a2e;
            --card-bg: #16213e;
            --text-light: #e6e6e6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: var(--dark-bg);
            color: var(--text-light);
            overflow-x: hidden;
        }
        
        /* Welcome Animation */
        .welcome-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: all 0.5s ease;
        }
        
        .welcome-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }
        
        .welcome-logo {
            font-size: 3rem;
            font-weight: 700;
            background: linear-gradient(90deg, #6c63ff, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            transform: scale(0.8);
            opacity: 0;
            animation: zoomIn 1s ease forwards 0.5s;
        }
        
        .welcome-text {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease forwards 1s;
        }
        
        .loading-bar {
            width: 200px;
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 2px;
            overflow: hidden;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards 1.5s;
        }
        
        .loading-progress {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #6c63ff, #ff6b6b);
            animation: loading 3s ease forwards 1.5s;
        }
        
        @keyframes zoomIn {
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        
        @keyframes fadeInUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }
        
        @keyframes loading {
            to {
                width: 100%;
            }
        }
        
        .container {
            max-width: 100%;
            padding: 20px;
            position: relative;
            z-index: 1;
        }
        
        /* Particles Background */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            background-color: rgba(108, 99, 255, 0.5);
            border-radius: 50%;
            pointer-events: none;
            animation: float linear infinite;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) translateX(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(100px);
                opacity: 0;
            }
        }
        
        /* Language Toggle */
        .language-toggle {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }
        
        .language-btn {
            background: transparent;
            color: var(--text-light);
            border: 1px solid var(--primary);
            padding: 5px 15px;
            margin-left: 10px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .language-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Page Transitions */
        .page {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .page.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            height: 198px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }
        
        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.8);
            transition: transform 10s ease;
        }
		
		.ys{
		    border-radius: 50%;
		}
        
        .hero:hover .hero-img {
            transform: scale(1.05);
        }
        
        .hero-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 30px;
            color: white;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            z-index: 2;
        }
        .shop-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(90deg, #6c63ff, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        
        .hover-text-effect:hover {
            transform: scale(1.05);
        }
        
        .shop-tagline {
            font-size: 0.9rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }
        
        .badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Profile Section */
        .profile-section {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .profile-container {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }
        
        .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .owner-name {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .owner-title {
            font-size: 0.9rem;
            color: var(--text-light);
            opacity: 0.8;
            margin-bottom: 15px;
        }
        
        .quick-contact {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .quick-contact a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .quick-contact a:hover {
            transform: scale(1.1);
            background: var(--secondary);
        }
        
        /* Action Buttons */
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .action-btn {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            border-radius: 30px;
            border: none;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .action-btn i {
            margin-right: 8px;
        }
        
        .action-btn.share {
            background: #07fffa9c;
            color: #212529;
        }
        
        .action-btn.contact {
			background: #00ff3a40;
			color: white;
        }
        
        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Sections */
        .section {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .section-title i {
            margin-right: 10px;
        }
        
        .about-text {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .language-content {
            display: none;
        }
        
        .language-content.active {
            display: block;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            background: var(--primary);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }
        
        .service-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .service-card:hover .service-icon {
            color: white;
        }
        
        .service-name {
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .product-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--success);
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 500;
            z-index: 1;
        }
        
        .product-img-container {
            height: 120px;
            overflow: hidden;
        }
        
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .product-card:hover .product-img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-title {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .product-price {
            font-weight: 700;
            color: var(--primary);
        }
        
        .product-old-price {
            text-decoration: line-through;
            font-size: 0.8rem;
            opacity: 0.7;
            margin-left: 5px;
        }
        
        /* Contact Methods */
        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .contact-card:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--primary);
        }
        
        .contact-card:hover .contact-icon {
            color: white;
        }
        
        .contact-details h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .contact-details a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 5px;
        }
        
        /* Map Container */
        .map-container {
            margin-top: 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 200px;
            border: none;
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            height: 150px;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 10px;
            color: white;
        }
        
        .gallery-caption h3 {
            font-size: 0.9rem;
        }
        
        /* Portfolio Items */
         .profile-section {
            text-align: center;
            padding: 20px;
            margin-top: -60px;
            position: relative;
            z-index: 3;
        }
        
         .profile-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .profile-img:hover {
            transform: rotate(10deg) scale(1.1);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.4);
        }
        /* Video Section */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Logo Templates Section */
        .logo-templates {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .logo-template {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo-template:hover {
            transform: translateY(-5px);
            background: var(--primary);
        }
        
        .logo-template-img {
            width: 100%;
            height: 100px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        /* Digital Invitation Cards */
        .invitation-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .invitation-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .invitation-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .invitation-img-container {
            height: 180px;
            overflow: hidden;
        }
        
        .invitation-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .invitation-card:hover .invitation-img {
            transform: scale(1.1);
        }
        
        .invitation-info {
            padding: 15px;
        }
        
        .invitation-title {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .invitation-price {
            font-weight: 700;
            color: var(--primary);
        }
        
        /* Navigation */
        .nav-container {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--card-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }
        
        .nav-btn {
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 1.2rem;
            padding: 10px;
            opacity: 0.7;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-btn.active {
            opacity: 1;
            color: var(--primary);
            transform: translateY(-5px);
        }
        
        .nav-btn.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
        }
        
        /* Footer */
        .footer {
            background: #0f0f23;
            padding: 40px 20px;
            text-align: center;
            margin-top: 50px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: left;
        }
        
        .footer-column h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        
        .footer-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .footer-social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            margin-bottom: 10px;
        }
        
        .footer-newsletter button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter button:hover {
            background: var(--secondary);
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
		
        .my{
			width: 350px;
			height: 100px;
		}
		
        .footer-copyright {
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .container {
                padding: 30px;
                max-width: 1200px;
                margin: 0 auto;
            }
            
            .hero-img {
                height: 300px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .products-grid, .invitation-cards {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .gallery-grid, .logo-templates {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
            
            .portfolio-item {
                flex-direction: row;
                align-items: center;
            }
            
            .portfolio-item:nth-child(even) {
                flex-direction: row-reverse;
            }
            
            .portfolio-img {
                width: 50%;
                height: 250px;
            }
            
            .portfolio-info {
                width: 50%;
            }
            
            .map-container iframe {
                height: 300px;
            }
        }
		
		video {
      width: 100%;
      max-width: 720px;
      border: 5px solid #333;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }