
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: #000;
            color: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }
        .bg-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: radial-gradient(circle at 20% 80%, #680034 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, #47018d 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, #005c2e 0%, transparent 50%),
                        linear-gradient(135deg, #000428 0%, #00203b 100%);
            animation: backgroundPulse 20s ease-in-out infinite;
        }
        @keyframes backgroundPulse {
            0%, 100% { filter: hue-rotate(0deg) brightness(1); }
            25% { filter: hue-rotate(90deg) brightness(1.2); }
            50% { filter: hue-rotate(180deg) brightness(0.9); }
            75% { filter: hue-rotate(270deg) brightness(1.1); }
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 5%;
            background: rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(30px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(50px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff0080, #8000ff, #00ff80, #ff0080);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: logoGradient 4s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .logo:hover {
            transform: scale(1.1) rotate(5deg);
            filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.8));
        }
        @keyframes logoGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .nav-menu {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s ease;
            padding: 10px 0;
            display: block;
        }
        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(45deg, #ff0080, #00ff80);
            transform: translateX(-50%);
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        .nav-links a:hover::before {
            width: 100%;
        }
        .nav-links a:hover {
            color: #ff0080;
            transform: translateY(-3px);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px 0;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            opacity: 0;
            visibility: hidden;
            transform-origin: top center;
            transform: translateY(10px) translateX(-50%) scale(0.95);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            z-index: 1001;
        }
        .nav-links li:hover > .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) translateX(-50%) scale(1);
        }
        .dropdown-menu li {
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .dropdown-menu a {
            color: rgba(255, 255, 255, 0.8);
            padding: 12px 25px;
            font-size: 0.95rem;
            text-align: left;
            white-space: nowrap;
            transition: all 0.2s ease;
        }
        .dropdown-menu a:hover {
            background: linear-gradient(90deg, rgba(255, 0, 128, 0.2), transparent);
            color: #ff0080;
            transform: translateX(5px);
        }
        .dropdown-menu a::before {
            display: none;
        }
        .menu-toggle {
            display: none;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
        }
        .hero {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }
        .hero-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1543310706-96b63f689f07?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover;
            filter: brightness(0.3) contrast(1.2);
            animation: kenBurns 20s ease-in-out infinite;
        }
        @keyframes kenBurns {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 0, 128, 0.3), rgba(128, 0, 255, 0.2), rgba(0, 255, 128, 0.1));
            backdrop-filter: blur(2px);
        }
        .hero-content {
            z-index: 10;
            max-width: 1000px;
            animation: heroEntrance 2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        @keyframes heroEntrance {
            0% { opacity: 0; transform: translateY(100px) scale(0.8); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        .hero-subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 2rem;
            color: #00ff80;
            margin-bottom: 20px;
            animation: subtitleFloat 3s ease-in-out infinite;
        }
        @keyframes subtitleFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #fff, #ff0080, #8000ff, #00ff80);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: textGradient 6s ease-in-out infinite, textFloat 4s ease-in-out infinite;
            text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
            line-height: 1.2;
        }
        @keyframes textGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        @keyframes textFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
        }
        .service-section, .digital-cards-section {
            padding: 100px 5%;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ff0080, #00ff80);
            border-radius: 2px;
        }
        .section-header p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            text-align: center;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        .cta-section {
            padding: 100px 5%;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 0, 128, 0.1), rgba(128, 0, 255, 0.1));
            border-radius: 20px;
            margin: 80px auto;
            max-width: 1200px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
        }
        footer {
            padding: 80px 5% 40px;
            background: linear-gradient(135deg, #000, #1a1a2e);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ff0080;
        }
        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 10px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #00ff80;
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.4s ease;
        }
        .social-links a:hover {
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 15px 30px rgba(255, 0, 128, 0.4);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }
        /* New CSS for Digital Cards Section */
        .digital-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            justify-content: center;
            align-items: stretch;
        }

        .digital-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: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .digital-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }
        
        .digital-card a {
            text-decoration: none;
            color: inherit;
        }
        
        .card-image-wrapper {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 15px;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .digital-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .digital-card img:hover {
            transform: scale(1.1);
        }

        .digital-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-top: 10px;
            margin-bottom: 0;
            color: #fff;
        }

        .view-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #ff0080, #8000ff);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(255, 0, 128, 0.2);
            text-decoration: none;
        }

        .view-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
            background: linear-gradient(45deg, #ff3399, #9933ff);
        }
        /* End of New CSS */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 4rem; }
            .section-header h2 { font-size: 2.5rem; }
        }
        @media (max-width: 992px) {
            .nav-menu {
                display: block;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(30px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                overflow: hidden;
                max-height: 0;
                transition: max-height 0.5s ease-in-out;
            }
            .nav-menu.active { max-height: 600px; }
            .nav-links {
                flex-direction: column;
                gap: 0;
                padding: 20px 0;
                text-align: center;
            }
            .nav-links li { padding: 10px 0; }
            .nav-links a {
                padding: 10px 20px;
                display: block;
                font-size: 1.2rem;
            }
            .nav-links a::before { display: none; }
            .dropdown-menu {
                position: static;
                transform: none;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                border: none;
                border-radius: 0;
                min-width: unset;
                padding: 0;
                max-height: 0;
                transition: max-height 0.3s ease-in-out;
            }
            .nav-links li.has-dropdown.active > .dropdown-menu { max-height: 400px; }
            .dropdown-menu a {
                padding: 8px 35px;
                font-size: 1rem;
            }
            .menu-toggle { display: block; }
            .has-dropdown.active > .dropdown-menu {
                max-height: 500px;
                overflow: visible;
                opacity: 1;
                transform: translateY(0);
                visibility: visible;
                position: relative;
                box-shadow: none;
                background: rgba(255, 255, 255, 0.05);
                border: none;
            }
            .dropdown-menu {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-10px);
                visibility: hidden;
                transition: all 0.3s ease;
                position: relative;
                width: 100%;
                box-shadow: none;
                background: transparent;
                padding: 0;
            }
            .dropdown-menu li { padding: 0; }
            .dropdown-menu a {
                padding: 10px 20px 10px 40px !important;
                font-size: 0.9rem;
                color: rgba(255, 255, 255, 0.8);
            }
            .hero { height: 60vh; }
        }
        @media (max-width: 768px) {
            header { padding: 15px 5%; }
            .hero h1 {
                font-size: 3rem;
                margin-bottom: 20px;
            }
            .hero-subtitle { font-size: 1.5rem; }
            .about-text, .mv-card { padding: 30px; }
            .section-header h2 { font-size: 2rem; }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }
            .social-links { justify-content: center; }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .team-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .logo { font-size: 2rem; }
            .hero h1 { font-size: 2.2rem; }
            .hero { height: 50vh; }
            .about-text, .mv-card { padding: 20px; }
            .section-header h2 { font-size: 1.8rem; }
            .stats-grid, .team-grid { grid-template-columns: 1fr; }
            .stat-number { font-size: 2.5rem; }
            .cta-section h2 { font-size: 2rem; }
        }
  