        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e1a2f;
            scroll-behavior: smooth;
        }

        :root {
            --purple-deep: #3b1e54;
            --purple-primary: #6a1e9c;
            --purple-vibrant: #8b3cff;
            --purple-soft: #b77eff;
            --white-light: #ffffff;
            --white-off: #faf5ff;
            --shadow-glow: 0 15px 35px rgba(0, 0, 0, 0.1);
            --dark-bg: #0f0520;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* ========= NAVBAR WITH DROPDOWN ========= */
        nav {
            background: #62087d;
            backdrop-filter: blur(12px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .logo img {
            max-height: 60px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .nav-links a:hover {
            color: #d9a7ff;
            transform: translateY(-2px);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        .dropdown-menu {
            position: absolute;
            top: 40px;
            left: 0;
            background: #ffffff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            border-radius: 20px;
            min-width: 220px;
            padding: 12px 0;
            opacity: 0;
            visibility: hidden;
            transition: 0.25s ease;
            z-index: 200;
            border: 1px solid rgba(106, 30, 156, 0.2);
        }
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            top: 32px;
        }
        .dropdown-menu li {
            display: block;
            margin: 0;
        }
        .dropdown-menu a {
            color: #3b1e54 !important;
            padding: 10px 24px;
            display: block;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
        }
        .dropdown-menu a:hover {
            background: #f3eaff;
            color: #6a1e9c !important;
            transform: none;
            padding-left: 28px;
        }
        .dropdown > a i {
            margin-left: 6px;
            font-size: 0.8rem;
            transition: transform 0.2s;
        }
        .dropdown:hover > a i {
            transform: rotate(180deg);
        }

        /* ========= HERO SLIDER ========= */
        .swiper {
            width: 100%;
            height: 650px;
            border-radius: 36px;
            margin: 0 0 20px 0;
            box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.25);
        }
        .swiper-slide {
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 36px;
        }
        .slide-content {
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(8px);
            padding: 32px 56px;
            border-radius: 80px;
            text-align: center;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .slide-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .slide-content p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        /* ========= SECTION STYLES ========= */
        section {
            padding: 80px 0;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #6a1e9c;
            margin-bottom: 56px;
            position: relative;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #8b3cff;
            margin: 18px auto 0;
            border-radius: 4px;
        }

        /* Why Choose Us */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 24px;
        }
        .card-hover {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: #6a1e9c;
            border-radius: 32px;
            padding: 40px 32px;
            border: 1px solid rgba(183, 126, 255, 0.4);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            color: white;
            text-align: center;
        }
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 28px 38px -12px rgba(0, 0, 0, 0.3);
            border-color: #c084fc;
            background: #7b2ab0;
        }
        .feature-icon {
            font-size: 3rem;
            color: #ca9eff;
            margin-bottom: 24px;
        }
        .card-hover h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }
        .card-hover p {
            line-height: 1.6;
            color: #f3eaff;
        }

        /* Stats Counter */
        .stats-section {
            background: linear-gradient(135deg, #3b1e54, #6a1e9c);
            color: white;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .stat-item h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .stat-item p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Product Showcase */
        .product-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
        }
        .cat-btn {
            background: #f0eaff;
            border: none;
            padding: 14px 32px;
            border-radius: 60px;
            font-size: 1rem;
            font-weight: 600;
            color: #3b1e54;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .cat-btn i {
            margin-right: 8px;
        }
        .cat-btn.active, .cat-btn:hover {
            background: #6a1e9c;
            color: white;
        }
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: #faf5ff;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e9dff5;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 35px rgba(106, 30, 156, 0.15);
        }
        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .product-card h4 {
            color: #3b1e54;
            font-size: 1.2rem;
            padding: 20px 20px 8px;
        }
        .product-card p {
            color: #5a4a6a;
            padding: 0 20px 20px;
            font-size: 0.9rem;
        }
        .product-link {
            display: inline-block;
            margin: 0 20px 20px;
            color: #6a1e9c;
            font-weight: 600;
            text-decoration: none;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, #6a1e9c, #8b3cff);
            border-radius: 48px;
            padding: 60px;
            text-align: center;
            color: white;
        }
        .cta-banner h2 {
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .cta-btn {
            display: inline-block;
            background: white;
            color: #6a1e9c;
            padding: 14px 36px;
            border-radius: 60px;
            text-decoration: none;
            font-weight: 700;
            margin-top: 20px;
            transition: 0.2s;
        }
        .cta-btn:hover {
            transform: scale(1.02);
            background: #f3eaff;
        }

        /* Team Section */
        .team-flex {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        .team-member {
            text-align: center;
            background: #faf5ff;
            padding: 40px 28px;
            border-radius: 56px;
            width: 320px;
            transition: 0.25s;
            border: 1px solid #e0ceff;
        }
        .team-member:hover {
            background: #6a1e9c;
            transform: scale(1.02);
            color: white;
        }
        .team-member:hover h3, .team-member:hover p {
            color: white;
        }
        .circle-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #b87aff;
            margin-bottom: 24px;
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 50px;
        }
        .contact-form {
            background: #faf5ff;
            padding: 40px;
            border-radius: 40px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            margin-bottom: 20px;
            border: 1.5px solid #e0ceff;
            border-radius: 60px;
            font-family: 'Inter', sans-serif;
        }
        .contact-form textarea {
            border-radius: 28px;
            resize: vertical;
        }
        .contact-form button {
            background: #6a1e9c;
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 60px;
            font-weight: 700;
            cursor: pointer;
            width: 100%;
        }
        .contact-info-card {
            background: #faf5ff;
            padding: 30px;
            border-radius: 40px;
            margin-bottom: 20px;
        }
        .contact-info-card i {
            font-size: 2rem;
            color: #6a1e9c;
            margin-bottom: 12px;
        }

        .footer-new {
            background: #0c0719;
            color: #cbc3e0;
            padding: 60px 0 30px;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid #2a1a3a;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-col h3, .footer-col h4 {
            color: white;
            margin-bottom: 24px;
            font-size: 1.3rem;
            font-weight: 700;
        }
        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }
        .footer-col p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.9rem;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-links a {
            color: #cbc3e0;
            background: #2a1a3a;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: 0.25s;
            font-size: 1.2rem;
            text-decoration: none;
        }
        .social-links a:hover {
            background: #8b3cff;
            color: white;
            transform: translateY(-3px);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 14px;
        }
        .footer-col ul li a {
            color: #cbc3e0;
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .footer-col ul li a:hover {
            color: #c084fc;
            padding-left: 5px;
        }
        .contact-footer li {
            display: flex;
            gap: 12px;
            align-items: center;
            margin-bottom: 16px;
        }
        .contact-footer i {
            width: 24px;
            color: #b87aff;
        }
        .newsletter-form {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 60px;
            border: none;
            background: #1f172e;
            color: white;
            outline: none;
        }
        .newsletter-form button {
            background: #8b3cff;
            border: none;
            padding: 0 20px;
            border-radius: 60px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s;
        }
        .newsletter-form button:hover {
            background: #a155ff;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #2a1a3a;
            font-size: 0.8rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }