
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0d4d3a 0%, #1a6b4f 50%, #2d8a63 100%);
            color: white;
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        .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><pattern id="grid" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') center/cover;
            opacity: 0.5;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 400;
        }

        .hero-content .description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.8;
            line-height: 1.7;
        }

        .hero-graphic {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .automation-circle {
            width: 370px;
            height: 370px;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            /* box-shadow: 0 20px 40px rgba(0,0,0,0.3); */
        }

        .logo-image {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
        }

        .automation-circle::before {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            /* border: 2px solid rgba(255,255,255,0.2); */
            border-radius: 50%;
            /* animation: rotate 20s linear infinite; */
        }

        .automation-circle::after {
            content: '';
            position: absolute;
            width: 360px;
            height: 360px;
            /* border: 1px solid rgba(255,255,255,0.1); */
            border-radius: 50%;
            /* animation: rotate 30s linear infinite reverse; */
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .circle-icon {
            font-size: 4rem;
            color: white;
            z-index: 3;
        }

        .cta-button {
            display: inline-block;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            transition: 0.3s;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #4a1f3f, #6b2020);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.6);
            color: white;
        }

        /* MQI Section */
        .harshwal-mqi-section {
            padding: 80px 20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
            box-sizing: border-box;
        }

        .harshwal-mqi-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 45% 45%;
            gap: 10%;
            align-items: center;
            position: relative;
            z-index: 2;
            box-sizing: border-box;
        }

        .harshwal-mqi-content {
            box-sizing: border-box;
        }

        .harshwal-mqi-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 40px 0;
            padding: 0;
            line-height: 1.1;
            letter-spacing: -0.02em;
            box-sizing: border-box;
        }

        .harshwal-mqi-content p {
            font-size: 1.125rem;
            color: #666;
            margin: 0 0 32px 0;
            padding: 0;
            line-height: 1.7;
            box-sizing: border-box;
        }

        .harshwal-mqi-features {
            margin: 40px 0;
            padding: 0;
            box-sizing: border-box;
        }

        .harshwal-mqi-feature-item {
            display: flex;
            align-items: center;
            margin: 0 0 20px 0;
            padding: 0;
            box-sizing: border-box;
        }

        .harshwal-mqi-feature-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 16px 0 0;
            padding: 0;
            flex-shrink: 0;
            box-sizing: border-box;
        }

        .harshwal-mqi-feature-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 12px;
        }

        .harshwal-mqi-feature-text {
            font-size: 1.125rem;
            color: #666;
            line-height: 1.5;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .harshwal-mqi-image {
            position: relative;
            box-sizing: border-box;
        }

        .harshwal-mqi-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            border-radius: 16px;
            object-fit: contain;
            display: block;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Problem Section */
        .problem-section {
            background: #f8fafc;
            padding: 100px 20px;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #718096;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .problem-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            text-align: left;
        }

        .problem-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .problem-icon i {
            font-size: 24px;
            color: #ffffff;
        }

        .problem-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .problem-content p {
            color: #718096;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Solution Process Section */
        .solution-section {
            background: white;
            padding: 100px 20px;
        }

        .solution-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .solution-intro h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .solution-intro p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 900px;
            margin: 0 auto;
        }

        .solution-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .solution-step {
            text-align: center;
        }

        .step-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .step-circle i {
            font-size: 2.5rem;
            color: white;
        }

        .step-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background: #2d3748;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .solution-step h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .solution-step p {
            color: #718096;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Features Section */
        .features-section {
            background: #f8fafc;
            padding: 100px 20px;
        }

        .features-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #718096;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Why It Matters Section */
        /* .why-matters-section {
            background: 
                linear-gradient(135deg, rgba(116, 76, 158, 0.7), rgba(139, 90, 126, 0.7), rgba(160, 104, 90, 0.7)),
                url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            color: white;
            padding: 100px 20px;
        } */

        .why-matters-section {
  background: linear-gradient(
    135deg, 
    rgba(116, 76, 158, 0.85),  /* Increased opacity from 0.7 to 0.85 */
    rgba(139, 90, 126, 0.85), 
    rgba(160, 104, 90, 0.85)
  ), 
  url('../assets/2148073304.jpg');  /* Update with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 100px 20px;
}

        .why-matters-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .why-matters-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .why-matters-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .benefit-card {
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .benefit-icon i {
            font-size: 2rem;
            color: white;
        }

        .benefit-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .benefit-card p {
            opacity: 0.9;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Final CTA Section */
        .final-cta-section {
            background: white;
            padding: 80px 20px;
            text-align: center;
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta-content h3 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 20px;
        }

        .cta-button-large {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 18px 50px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgb(124 124 124 / 40%)
        }

        .cta-button-large:hover {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            transform: translateY(-2px);
            /* box-shadow: 0 10px 30px rgba(116, 76, 158, 0.6); */
            box-shadow: 0 6px 20px rgb(124 124 124 / 40%);
            color: white;
        }

        /* Video Section */
        .video-section {
            background: #f8fafc;
            padding: 100px 20px;
            text-align: center;
        }

        .video-section h2 {
            font-size: 2.2rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 50px;
        }

        .video-thumbnail-container {
            position: relative;
            display: inline-block;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            cursor: pointer;
            max-width: 90vw;
            width: 800px;
            aspect-ratio: 16/9;
            background: #2d3748;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.9;
        }

        .video-thumbnail-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            pointer-events: none;
            user-select: none;
            transition: all 0.3s ease;
        }

        .video-thumbnail-container:hover .video-thumbnail-play {
            background: white;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-thumbnail-play span {
            display: block;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-left: 4px;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0; top: 0; right: 0; bottom: 0;
            width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.9);
            justify-content: center; align-items: center;
            transition: background 0.3s;
        }

        .modal-content {
            position: relative;
            border-radius: 20px;
            max-width: 90vw;
            width: 900px;
            aspect-ratio: 16/9;
            display: flex;
            justify-content: center; align-items: center;
            animation: popIn 0.3s;
        }

        @keyframes popIn {
            from { transform: scale(0.8); opacity: 0;}
            to { transform: scale(1); opacity: 1;}
        }

        .modal-content iframe {
            width: 100%; height: 100%;
            border: none;
            border-radius: 20px;
        }

        .close-modal {
            position: absolute;
            top: -50px; right: 0;
            font-size: 2rem;
            color: #fff;
            cursor: pointer;
            z-index: 2;
            background: rgba(0,0,0,0.5);
            padding: 8px 16px;
            border-radius: 8px;
            transition: background 0.2s;
        }

        .close-modal:hover {
            background: rgba(255,255,255,0.2);
        }

        /* Footer Styles */
        .harshwal-footer {
            background: #000000;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .harshwal-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
            color: white;
        }

        /* Main Grid Layout */
        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Desktop Layout - 5 columns */
        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        /* Tablet Layout */
        @media (min-width: 768px) and (max-width: 1023px) {
            .harshwal-footer-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }

            .harshwal-company-info {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }
        }

        /* Mobile Layout */
        @media (max-width: 767px) {
            .harshwal-footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #4299e1;
        }

        /* Social Links */
        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: #4299e1;
            transform: translateY(-2px);
            color: white;
        }

        /* Contact Information Styles */
        .harshwal-contact-info {
            margin-bottom: 1.2rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #4299e1;
        }

        /* Footer Bottom */
        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #4299e1;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-logo img {
                height: 35px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-link-dropdown::after {
                content: '+';
                font-size: 20px;
                font-weight: 300;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-link-dropdown::after {
                content: '−';
            }

            .harshwal-nav-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                display: none;
                background: #f8f9fa;
                border-radius: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .harshwal-nav-menu-item.harshwal-nav-item-active .harshwal-nav-dropdown {
                display: block;
                max-height: 500px;
            }

            .harshwal-nav-dropdown-item {
                padding: 12px 40px;
                border-bottom: 1px solid #e0e0e0;
            }

            .harshwal-nav-dropdown-item:last-child {
                border-bottom: none;
            }

            .harshwal-nav-dropdown-item:hover {
                padding-left: 45px;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(2) {
                opacity: 0;
            }

            .harshwal-nav-mobile-toggle.harshwal-nav-toggle-active span:nth-child(3) {
                transform: rotate(45deg) translate(-7px, -8px);
            }

            .harshwal-nav-cta-btn {
                margin: 20px;
                display: block;
                text-align: center;
                width: calc(100% - 40px);
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-graphic {
                order: -1;
            }

            .automation-circle {
                width: 200px;
                height: 200px;
            }

            .automation-circle::before {
                width: 240px;
                height: 240px;
            }

            .automation-circle::after {
                width: 280px;
                height: 280px;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .problems-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .solution-steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 20px;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .problem-section, .solution-section, .features-section, .why-matters-section, .final-cta-section, .video-section {
                padding: 80px 20px;
            }

            .harshwal-footer {
                padding: 3rem 0 1rem;
            }

            .harshwal-footer-content {
                padding: 0 1.5rem;
            }

            .harshwal-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 0.8rem;
            }

            .harshwal-footer-legal {
                justify-content: center;
                gap: 0.8rem;
                flex-wrap: wrap;
                order: 1;
            }

            .harshwal-footer-copyright {
                order: 2;
                font-size: 0.75rem;
                margin-top: 0.5rem;
            }

            .harshwal-mqi-section {
                padding: 60px 20px;
            }

            .harshwal-mqi-container {
                grid-template-columns: 1fr;
                gap: 40px;
                max-width: none;
            }

            .harshwal-mqi-content {
                order: 1;
            }

            .harshwal-mqi-content h1 {
                font-size: 2.5rem;
                margin-bottom: 30px;
            }

            .harshwal-mqi-content p {
                font-size: 1rem;
            }

            .harshwal-mqi-image {
                order: 2;
            }

            .harshwal-mqi-image img {
                width: 100%;
                height: auto;
                max-height: 300px;
                object-fit: contain;
                border-radius: 12px;
            }

            .harshwal-mqi-feature-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 600px) {
            .video-section h2 {
                font-size: 1.8rem;
            }
            .video-thumbnail-play {
                width: 60px; 
                height: 60px; 
            }
            .video-thumbnail-play span {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .harshwal-footer-content {
                padding: 0 1rem;
            }

            .harshwal-footer-legal {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 0.5rem;
                max-width: 280px;
                margin: 0 auto;
            }

            .harshwal-footer-legal-link {
                font-size: 0.75rem;
                padding: 0.3rem;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .harshwal-mqi-section {
                padding: 40px 16px;
            }

            .harshwal-mqi-content h1 {
                font-size: 2rem;
            }

            .harshwal-mqi-container {
                gap: 30px;
            }

            .harshwal-mqi-image img {
                height: auto;
                max-height: 250px;
            }
        }
 