        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-red: #ff5858;
            --dark-blue: #0a1628;
            --trust-blue: #1e3a5f;
            --light-gray: #f8f9fa;
            --text-dark: #1a1a1a;
            --text-gray: #6b7280;
            --accent-gold: #f59e0b;
            --bg-gradient: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--dark-blue);
            text-decoration: none;
            background-size: contain; /* Or 'cover', '100%', etc. */
            background-position: center;
            width: 100px; /* Set a width and height for the element */
            height: 50px;
            display: block; /* Or inline-block */
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-cta {
            background: var(--primary-red);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .nav-cta:hover {
            background: #ff7070;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            align-items: center;
            position: relative;
            background: var(--bg-gradient);
            overflow: hidden;
            margin-top: 70px;
                display: grid; /* Changed from flex */
    place-items: center; /* Vertically and horizontally center the content grid */
    min-height: 100vh;
    padding-top: 70px; /* Account for fixed navbar */
        }

        /*
================================
Hero Section Layout & Animation
================================
*/

/* Update Hero section to be a grid container */


/* Redefine hero-content as the two-column grid */
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Text gets slightly more space */
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    padding: 2rem;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Slightly smaller to fit layout */
}

/* Styling for the animation container */
.hero-animation {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-animation svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/*
--------------------------------
SVG Animation Styles
--------------------------------
*/

/* 1. The Processor Core */
.processor-core .core-ring {
    fill: none;
    stroke: var(--primary-red);
    stroke-width: 2;
}
.processor-core .core-glow {
    fill: var(--primary-red);
    opacity: 0.5;
    animation: pulse 2.5s ease-in-out infinite;
}
.processor-core .core-pulse {
    fill: none;
    stroke: rgba(255, 88, 88, 0.5);
    stroke-width: 1.5;
    animation: pulse-wave 2.5s ease-in-out infinite;
}

/* 2. The Knowledge Inputs */
.k-element {
    fill: none;
    stroke: #94a3b8; /* Light gray-blue for a techy feel */
    stroke-width: 1.5;
    transform-origin: center;
    /* This animation makes the elements move towards the core */
    animation: get-processed 4s ease-in-out infinite;
    animation-delay: var(--delay);
}
.data-point { fill: #94a3b8; } /* Fill solid data points */
.people-icon { stroke-width: 2; }

/* 3. The Structured Output */
.output-wave {
    fill: none;
    stroke: var(--accent-gold);
    stroke-width: 3;
    stroke-linecap: round;
    /* This animation "draws" the line */
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-wave 4s ease-in-out infinite;
}

/*
--------------------------------
Auth section
--------------------------------
*/
        .auth-card {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            width: 100%;
            max-width: 650px;
            align-items: center;
            justify-content: center;
        }
        .auth-card h2 {
            font-family: 'Rajdhani', sans-serif;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.75rem;
            color: var(--dark-blue);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-gray);
        }
        .form-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
            font-family: 'Rajdhani', sans-serif;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        .form-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(255, 88, 88, 0.2);
        }
        .btn-submit {
            background: var(--primary-red);
            color: white;
            padding: 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: block;
            width: 100%;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
        }
        .btn-submit:hover {
            background: #ff7070;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 88, 88, 0.3);
        }
        .form-footer {
            margin-top: 2rem;
            text-align: center;
        }
        .form-footer a {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
        }
        .form-footer a:hover {
            text-decoration: underline;
        }
        .error-message {
            background-color: #fee2e2;
            color: #dc2626;
            border: 1px solid #fecaca;
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            margin-bottom: 1rem;
        }
/*
--------------------------------
Keyframe Animations
--------------------------------
*/

@keyframes pulse {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes pulse-wave {
    0% { transform: scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes get-processed {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    30% { /* Slight drift before moving */
        transform: translate(10px, -5px) scale(1.1);
        opacity: 1;
    }
    80% {
        transform: translate(120px, 0px) scale(0.1);
        opacity: 0;
    }
    100% { /* Stay invisible until next cycle */
        transform: translate(120px, 0px) scale(0);
        opacity: 0;
    }
}

@keyframes draw-wave {
    0%, 40% { /* Wait until processing starts */
        stroke-dashoffset: 200;
        opacity: 0;
    }
    70% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}


/*
--------------------------------
Responsive Adjustments
--------------------------------
*/
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr; /* Stack text on top of animation */
        text-align: center;
    }
    .hero-text {
        order: 2; /* Text appears below animation */
    }
    .hero-animation {
        order: 1; /* Animation appears on top */
        margin-bottom: 2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text {
      order: 1; /* Revert to text on top for smaller mobile */
    }
    .hero-animation {
      order: 2;
    }
}

        .hero::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 88, 88, 0.1) 0%, transparent 70%);
            top: -400px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-30px, 30px) rotate(180deg); }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero h1 span {
            color: var(--primary-red);
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: #e0e0e0;
            margin-bottom: 2rem;
            max-width: 700px;
            line-height: 1.6;
        }

        .hero-description {
            color: #b0b0b0;
            margin-bottom: 3rem;
            max-width: 650px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary-red);
            color: white;
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background: #ff7070;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 88, 88, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Service Banner */
        .service-banner {
            background: var(--accent-gold);
            color: var(--dark-blue);
            padding: 1.5rem;
            text-align: center;
            font-weight: 600;
        }

        .service-banner p {
            max-width: 800px;
            margin: 0 auto;
        }

        /* Problem Section */
        .problem-section {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .problem-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .problem-card h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .problem-example {
            background: var(--light-gray);
            padding: 1rem;
            border-radius: 8px;
            margin: 1rem 0;
            border-left: 3px solid var(--primary-red);
        }

        .problem-example .generic {
            color: var(--text-gray);
            font-style: italic;
            font-size: 0.9rem;
        }

        /* Process Section */
        .process-section {
            padding: 5rem 2rem;
            background: white;
        }

        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .process-step {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 12px;
            position: relative;
            transition: all 0.3s;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: var(--primary-red);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .process-step h3 {
            font-family: 'Rajdhani', sans-serif;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            margin-top: 0.5rem;
        }

        .process-duration {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        /* Case Study Section */
        .case-study-section {
            padding: 5rem 2rem;
            background: var(--dark-blue);
            color: white;
        }

        .case-study-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .case-study {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .case-study-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .industry-tag {
            background: var(--primary-red);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .case-metric {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
        }

        /* Service Offering Section */
        .service-section {
            padding: 5rem 2rem;
            background: var(--light-gray);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .service-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }

        /* Engagement Model */
        .engagement-section {
            padding: 5rem 2rem;
            background: white;
        }

        .engagement-timeline {
            max-width: 800px;
            margin: 3rem auto;
        }

        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .timeline-marker {
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .timeline-content {
            flex: 1;
        }

        .timeline-content h3 {
            font-family: 'Rajdhani', sans-serif;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }

        .timeline-duration {
            color: var(--accent-gold);
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--primary-red) 0%, #ff7070 100%);
            text-align: center;
            color: white;
        }

        .cta-section h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: var(--primary-red);
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Trust Section */
        .trust-section {
            padding: 3rem 2rem;
            background: var(--dark-blue);
            color: white;
            text-align: center;
        }

        .trust-badges {
            display: flex;
            gap: 3rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .trust-badge {
            text-align: center;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Rajdhani', sans-serif;
        }

        .trust-label {
            color: #e0e0e0;
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }