    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #dc2626;
            --dark-red: #991b1b;
            --black: #0a0a0a;
            --dark-gray: #1a1a1a;
            --light-gray: #2a2a2a;
            --accent-red: #ef4444;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--black);
            color: #ffffff;
            line-height: 1.7;
            overflow-x: hidden;
        }

        .background-texture {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220, 38, 38, 0.03) 2px, rgba(220, 38, 38, 0.03) 4px),
                repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(220, 38, 38, 0.03) 2px, rgba(220, 38, 38, 0.03) 4px),
                linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            z-index: -1;
            animation: textureShift 20s ease-in-out infinite;
        }

        @keyframes textureShift {
            0%, 100% { 
                opacity: 1;
                transform: scale(1);
            }
            50% { 
                opacity: 0.85;
                transform: scale(1.02);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
            padding: 20px 0;
            border-bottom: 2px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
            border-color: var(--accent-red);
        }

        .hero {
            padding: 80px 0;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, var(--accent-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-subtitle {
            font-size: 24px;
            color: #cccccc;
            margin-bottom: 30px;
            animation: fadeIn 1s ease-out 0.3s both;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .meta-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--light-gray);
            border-radius: 8px;
            border-left: 3px solid var(--primary-red);
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
        }

        .stars {
            color: #fbbf24;
            font-size: 20px;
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 40px;
            text-align: center;
            background: linear-gradient(135deg, #ffffff 0%, var(--accent-red) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }

        .industry-card {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--light-gray) 100%);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(220, 38, 38, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-red);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        }

        .industry-card:hover::before {
            transform: scaleX(1);
        }

        .industry-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--accent-red);
        }

        .stats-container {
            background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
            padding: 50px;
            border-radius: 12px;
            margin: 40px 0;
            border: 2px solid var(--primary-red);
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(220, 38, 38, 0.2);
        }

        th {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            font-weight: 700;
            position: sticky;
            top: 0;
        }

        tr:hover {
            background: rgba(220, 38, 38, 0.1);
        }

        .case-study {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-red);
            margin: 30px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .case-study h3 {
            color: var(--accent-red);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .metric {
            background: var(--black);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            border: 2px solid rgba(220, 38, 38, 0.3);
        }

        .metric-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-red);
            display: block;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-gray);
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid rgba(220, 38, 38, 0.2);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--primary-red);
        }

        .faq-question {
            padding: 20px;
            font-weight: 600;
            font-size: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px 20px;
            color: #cccccc;
            line-height: 1.8;
        }

        .achievements {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .achievement-card {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .achievement-card:hover {
            transform: scale(1.05);
        }

        .achievement-number {
            font-size: 48px;
            font-weight: 900;
            display: block;
            margin-bottom: 10px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            padding: 60px 40px;
            border-radius: 12px;
            text-align: center;
            margin: 60px 0;
            box-shadow: 0 10px 40px rgba(220, 38, 38, 0.4);
        }

        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .testimonials-scroll {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        .testimonials-track {
            display: flex;
            gap: 25px;
            animation: scrollLeft 60s linear infinite;
            width: max-content;
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testimonials-track:hover {
            animation-play-state: paused;
        }

        .testimonial-card {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--dark-gray) 100%);
            border: 2px solid rgba(220, 38, 38, 0.3);
            border-radius: 12px;
            padding: 25px;
            min-width: 400px;
            max-width: 400px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .testimonial-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
        }

        .testimonial-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .testimonial-header h4 {
            color: var(--accent-red);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .designation {
            color: #999;
            font-size: 14px;
            font-style: italic;
        }

        .testimonial-rating {
            text-align: right;
            flex-shrink: 0;
            margin-left: 15px;
        }

        .testimonial-rating .stars {
            color: #fbbf24;
            font-size: 16px;
            margin-bottom: 3px;
        }

        .rating-value {
            display: block;
            color: #fff;
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-text {
            color: #ddd;
            line-height: 1.7;
            font-size: 16px;
        }

        footer {
            background: var(--dark-gray);
            padding: 60px 0 30px;
            border-top: 3px solid var(--primary-red);
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            text-align: left;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--accent-red);
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 700;
        }

        .footer-section ul {
            list-style: none;
            line-height: 2;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-red);
        }

        .footer-bottom {
            border-top: 1px solid rgba(220, 38, 38, 0.3);
            padding-top: 30px;
            margin-top: 30px;
        }

        .disclaimer {
            color: #888;
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: #666;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            .hero-subtitle {
                font-size: 18px;
            }
            .meta-info {
                flex-direction: column;
                align-items: center;
            }
            .testimonials-track {
                animation-duration: 40s;
            }
            .testimonial-card {
                min-width: 300px;
            }
            .footer-info {
                flex-direction: column;
                text-align: center;
            }
        }
