    body {
        font-family: 'Syne', sans-serif;
        background-color: #F8F8F8;
        /* Main page background */
        color: #2C2C2C;
        /* Primary text color */
        line-height: 1.6;
        scroll-behavior: smooth;
        overflow-x: hidden;
        /* Ensure no horizontal scroll for the entire page */
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Syne', sans-serif;
        font-weight: 700;
        color: #2C2C2C;
        /* Heading text color */
    }

    h1 {
        font-weight: 800;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        background: linear-gradient(135deg, #FF6600, #FF3300);
        /* Orange gradient */
        color: white;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
        box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3);
        /* Orange shadow */
    }

    .hero-cta {
        background-color: #FFFFFF;
        /* White background */
        color: #FF6600;
        /* Orange text */
        transition: all 0.3s ease-in-out;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        /* Subtle shadow for white button */
        font-weight: 700;
    }

    .hero-cta:hover {
        background-color: #FFFFFF;
        /* Keep white background on hover */
        color: #FF6600;
        /* Keep orange text on hover */
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
        /* Slightly stronger subtle shadow */
    }

    /* Removed .logo styles */
    .just-dial-rating {
        font-size: 1.15rem;
        font-weight: 600;
        color: white;
        /* Rating text is white against orange hero */
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        /* Space before CTA */
    }

    .just-dial-rating strong {
        color: #FFFAEC;
        /* A very light orange for emphasis */
    }

    /* Unique Card Hover Styles (Applied to interactive-card, service-card, feature-item, industry-card) */
    .interactive-card,
    .service-card,
    .feature-item,
    .industry-card {
        background-color: #FFFFFF;
        /* White card background */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
        border: 1px solid #E0E0E0;
        /* Light grey border */
        overflow: hidden;
        position: relative;
    }

    .interactive-card:hover,
    .service-card:hover,
    .feature-item:hover,
    .industry-card:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.2),
            0 0 0 3px rgba(255, 102, 0, 0.3);
        /* Orange glowing accent border effect */
        border-color: #FF6600;
        /* Primary orange border */
    }

    /* Card Icon Background */
    .card-icon-bg {
        background-color: #FFF5EE;
        /* Very light orange background */
        border-radius: 50%;
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3.5rem;
        margin: 0 auto 1.5rem;
        color: #FF6600;
        /* Primary orange icon */
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease-in-out;
    }

    .interactive-card:hover .card-icon-bg,
    .service-card:hover .card-icon-bg,
    .feature-item:hover .card-icon-bg,
    .industry-card:hover .card-icon-bg {
        transform: translateY(-5px) rotate(5deg);
    }

    .card-title {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #2C2C2C;
        /* Dark grey heading */
    }

    .card-description {
        font-size: 1rem;
        /* Default for general cards */
        color: #6B6B6B;
        /* Medium grey description */
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Process Section - Vertical Timeline Specific Styles */
    .process-main-section {
        background-color: #FDFDFD;
        /* Lighter background for this section */
        padding: 80px 0;
    }

    .process-timeline {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline-line {
        position: absolute;
        width: 4px;
        height: 100%;
        background-color: #DEDEDE;
        /* Light grey line */
        left: 50%;
        transform: translateX(-50%);
        top: 0;
        z-index: 1;
    }

    .timeline-line-fill {
        position: absolute;
        width: 100%;
        height: 0%;
        background-image: linear-gradient(to top, #FF6600, #FF9900);
        /* Orange gradient fill */
        bottom: 0;
        /* Changed from bottom: 0 to top: 0 to fill from top */
        left: 0;
        transition: height 0.3s ease-out;
    }

    .process-stage-item {
        position: relative;
        width: 50%;
        padding: 20px 0;
        display: flex;
        align-items: center;
        z-index: 2;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        transform: translateY(50px);
    }

    .process-stage-item.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .process-stage-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .process-stage-item.active .process-step-content {
        border-color: #FF6600;
        /* Active orange border */
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
    }

    .process-stage-item.active .process-stage-icon {
        background-color: #FF6600;
        /* Active orange icon background */
        color: white;
        box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.4);
    }

    .process-stage-item::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #DEDEDE;
        /* Default circle color */
        border: 3px solid #F8F8F8;
        /* Matches body background for separation */
        z-index: 3;
        transition: all 0.3s ease-in-out;
    }

    .process-stage-item.active::before {
        background-color: #FF6600;
        /* Active orange circle */
        border-color: #FF6600;
        /* Active orange border */
    }

    /* Positioning for odd (left) items */
    .process-stage-item:nth-child(odd) {
        align-self: flex-start;
        padding-right: 70px;
        text-align: right;
        margin-right: auto;
    }

    .process-stage-item:nth-child(odd)::before {
        right: -11px;
        /* Precise centering */
    }

    /* Positioning for even (right) items */
    .process-stage-item:nth-child(even) {
        align-self: flex-end;
        padding-left: 70px;
        text-align: left;
        margin-left: auto;
    }

    .process-stage-item:nth-child(even)::before {
        left: -11px;
        /* Precise centering */
    }

    /* Icon within the step, positioned relative to the content */
    .process-stage-icon {
        font-size: 3rem;
        line-height: 1;
        margin: 0;
        width: 60px;
        height: 60px;
        background-color: #FFF5EE;
        /* Light orange background */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        transition: all 0.3s ease-in-out;
        z-index: 4;
    }

    .process-stage-item:nth-child(odd) .process-stage-icon {
        right: -28px;
        /* Precise centering */
    }

    .process-stage-item:nth-child(even) .process-stage-icon {
        left: -28px;
        /* Precise centering */
    }

    /* Content box for the step */
    .process-step-content {
        background-color: #FFFFFF;
        /* White content box */
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        width: 100%;
        border: 1px solid #E0E0E0;
        /* Light grey border */
        transition: all 0.3s ease-in-out;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .process-stage-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #2C2C2C;
        /* Dark grey heading */
    }

    .process-step-content .card-description {
        font-size: 0.95rem;
        /* Smaller for inline content */
        line-height: 1.5;
        margin-top: 0.5rem;
        color: #6B6B6B;
        /* Medium grey description */
    }


    /* Tech Stack */
    .tech-card {
        background-color: #FFFFFF;
        border-radius: 15px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
        border: 1px solid #E0E0E0;
        /* Light grey border */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        width: 140px;
        height: 140px;
        text-align: center;
    }

    .tech-card:hover {
        transform: translateY(-8px) scale(1.08);
        box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
        /* Orange shadow */
        border-color: #FF6600;
        /* Orange border */
    }

    .tech-card.active {
        background-color: #FF6600;
        /* Active orange background */
        color: white;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
        /* Orange shadow */
        border-color: #FF6600;
        /* Orange border */
    }

    .tech-card.active .tech-icon-display {
        color: white;
    }

    .tech-icon-display {
        font-size: 3.5rem;
        line-height: 1;
        margin-bottom: 0.5rem;
        color: #FF6600;
        /* Orange icon */
        transition: all 0.2s ease-in-out;
    }

    .tech-label {
        font-size: 0.9rem;
        font-weight: 600;
        color: #6B6B6B;
        /* Medium grey label */
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .tech-card.active .tech-label {
        color: white;
    }

    .tech-details-panel {
        background-color: #FFFFFF;
        /* White background */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        padding: 2rem;
        margin-top: 2rem;
        border: 1px solid #E0E0E0;
        /* Light grey border */
        min-height: 200px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Industries Section - New Card Design */
    .industry-card {
        background-color: #FFFFFF;
        /* White background */
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
        border: 1px solid #E0E0E0;
        /* Light grey border */
        padding: 2rem;
        text-align: center;
    }

    .industry-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.2),
            0 0 0 3px rgba(255, 102, 0, 0.3);
        /* Orange accent border */
        border-color: #FF6600;
        /* Primary orange border */
    }

    .industry-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        line-height: 1;
        transition: transform 0.3s ease-in-out;
        color: #FF6600;
        /* Orange icon */
    }

    .industry-card:hover .industry-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .industry-title {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #2C2C2C;
        /* Dark grey heading */
    }

    .industry-description {
        font-size: 1rem;
        color: #6B6B6B;
        /* Medium grey description */
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .highlight-text {
        color: #FF6600;
        /* Primary orange highlight */
        font-weight: 700;
    }

    .highlight-text-light {
        color: #FFFFFF;
        /* White for light highlight text */
        font-weight: 700;
    }

    .footer-bg {
        background-color: #F8F8F8;
        /* Main page background for footer */
        border-top: 1px solid #E0E0E0;
        /* Light grey border */
    }

    /* Responsive adjustments */
    @media (max-width: 767px) {
        .hero-section {
            padding: 80px 0;
        }

        .hero-section h1 {
            font-size: 3rem;
        }

        .hero-section p {
            font-size: 1.1rem;
        }

        .just-dial-rating {
            font-size: 1rem;
        }

        .process-timeline {
            padding: 0 10px;
        }

        .timeline-line {
            left: 20px;
            transform: translateX(0);
        }

        .timeline-line-fill {
            bottom: auto;
            /* Ensure it fills from top */
            top: 0;
        }

        .process-stage-item {
            width: 100%;
            padding: 15px 0;
            align-self: flex-start;
            padding-left: 50px;
            padding-right: 15px;
            text-align: left;
        }

        .process-stage-item:nth-child(odd),
        .process-stage-item:nth-child(even) {
            margin-left: 0;
            margin-right: 0;
            padding-right: 15px;
            text-align: left;
        }

        .process-stage-item::before {
            left: 18px;
            right: auto;
        }

        .process-stage-icon {
            left: -5px;
            right: auto;
        }

        .process-step-content {
            padding: 1rem;
        }

        .tech-card {
            width: 120px;
            height: 120px;
            padding: 1rem;
        }

        .tech-icon-display {
            font-size: 3rem;
        }

        .tech-label {
            font-size: 0.85rem;
        }
    }