@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
        
        :root {
            --primary-color: #006d77;
            --secondary-color: #8b5cf6;
            --accent-color: #ec4899;
            --dark-bg: #0f172a;
            --card-bg: #1e293b;
            --text-light: #101828;
            --text-muted: #000;
        }
        
        
        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-animation::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(99, 102, 241, 0.3);
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-100px) translateX(100px); }
        }
        
        /* Hero Section */
        .hero-section {
            padding: 80px 0 60px;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            background: #333;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 3rem;
        }
        
        /* Product Cards */
        .product-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
        }
        
        .product-card > * {
            position: relative;
            z-index: 1;
        }
        
        .product-icon {
            width: 80px;
            height: 80px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
        }
        
        .product-number {
            font-size: 1rem;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 10px;
            display: inline-block;
            padding: 5px 15px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 20px;
        }
        
        .product-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: var(--text-light);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .product-tagline {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 30px;
            font-weight: 300;
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-top: 35px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .feature-item {
            background: rgba(99, 102, 241, 0.05);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(99, 102, 241, 0.1);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateX(5px);
        }
        
        .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-light);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            color: var(--text-muted);
            display: flex;
            align-items: center;
        }
        
        .feature-list li::before {
            content: '◆';
            color: var(--primary-color);
            margin-right: 12px;
            font-size: 0.8rem;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
            border-left: 4px solid var(--primary-color);
            padding: 25px;
            border-radius: 12px;
            margin: 30px 0;
        }
        
        .highlight-box h4 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .stakeholder-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .stakeholder-card {
            padding: 25px;
            border-radius: 16px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .stakeholder-card:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
        }
        
        .stakeholder-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .stakeholder-card h5 {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .stakeholder-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 10px;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
            color: white;
        }
        
        .badge-custom {
            display: inline-block;
            padding: 6px 16px;
            border: 1px solid var(--primary-color);
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 5px;
            color: var(--text-light);
        }
        
        /* 3D Image Container */
        .product-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 0 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: fill;
        }
        
        .product-image:hover img {
            transform: scale(1.05) rotateY(5deg);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .product-title {
                font-size: 2rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .h2all {
          display: flex;                  /* icon + text side-by-side */ /* [web:2] */
          align-items: center;            /* vertical centering */       /* [web:2][web:15] */
          gap: 12px;                      /* space between icon/text */  /* [web:15] */
        }
        
        .h2big {
          flex: 0 0 auto;                 /* icon ka size fixed rahe */  /* [web:15] */
          display: inline-flex;           /* icon align better */         /* [web:11] */
          align-items: center;            /* icon vertical align */       /* [web:2] */
          font-size: 32px;                /* icon size control */         /* [web:11] */
          line-height: 1;  
              margin-bottom: 0;/* crisp alignment */           /* [web:11] */
        }
        
        .h2small {
          flex: 1 1 auto;                 /* text ko bachi space mile */ /* [web:15] */
          text-align: left;               /* left align text */           /* [web:4][web:14] */
        }
        
        .h2small .product-title {
          margin: 0;                      /* default h2 margins hataye */ /* [web:15] */
          line-height: 1.2;                                                   /* [web:11] */
        }
        
        .h2small .product-tagline {
          margin: 4px 0 0;                /* title se thoda gap */        /* [web:15] */
          text-align: left;               /* ensure left align */         /* [web:4] */
        }
