    body {
        font-family: 'Inter', sans-serif;
        color: #1a1a1a;
        margin: 0;
        overflow-x: hidden; /* Prevent horizontal scroll due to potential overflow */
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navigation */
    .nav {
        position: fixed;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 90px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #2563eb, #f97316);
        background-image: url('https://transifyx.com/wp-content/uploads/2025/08/X-Transify-logo-120x120-1.png');
        background-size: cover;
        border-radius: 6px;
    }

    .logo-text {
        font-size: 24px;
        font-weight: bold;
        color: #2563eb;
    }

    .nav-menu {
        display: flex;
        gap: 30px;
    }

    .nav-link {
        text-decoration: none;
        color: #666;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #2563eb;
    }

    /* Hamburger Menu for Mobile */
    .hamburger {
        display: none; /* Hidden on desktop */
        cursor: pointer;
        padding: 10px;
        z-index: 1001; /* Ensure it's above other content */
    }

    .hamburger-line {
        width: 30px;
        height: 3px;
        background-color: #333;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #f97316 100%);
        min-height: 120vh;
        display: flex;
        align-items: center;
        position: relative;
        color: white;
        text-align: center;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.2);
    }

    .hero-content {
        position: relative;
        z-index: 10;
    }

    .hero h1 {
        font-size: clamp(3rem, 8vw, 4rem);
        font-weight: bold;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero .highlight {
        color: #f97316;
    }

    .hero .subtitle {
        font-size: clamp(1.25rem, 3vw, 2rem);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .hero .description {
        font-size: clamp(1rem, 2vw, 1.25rem);
        margin-bottom: 2rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-block;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: #f97316;
        color: white;
    }

    .btn-primary:hover {
        background: #ea580c;
        transform: translateY(-2px);
    }

    .btn-outline {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-outline:hover {
        background: white;
        color: #2563eb;
    }

    /* Section Styling */
    .section {
        padding: 80px 0;
    }

    .section-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        font-weight: bold;
        text-align: center;
        margin-bottom: 1.5rem;
        color: #2563eb;
    }

    .section-description {
        font-size: 1.25rem;
        text-align: center;
        color: #666;
        max-width: 800px;
        margin: 0 auto 3rem;
        line-height: 1.6;
    }

    /* Services Section */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .service-card {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 1px solid #f1f5f9;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #2563eb, #f97316);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 32px;
        color: white;
    }

    .service-title {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #2563eb;
    }

    .service-description {
        color: #666;
        line-height: 1.6;
    }

    /* Why Us Section */
    .why-us {
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(249, 115, 22, 0.1));
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .feature {
        text-align: center;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #2563eb, #f97316);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 40px;
        color: white;
    }

    .feature-title {
        font-size: 1.25rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #2563eb;
    }

    .feature-description {
        color: #666;
        line-height: 1.6;
    }

    /* Approach Section */
    .approach-steps {
        margin-top: 3rem;
        position: relative;
    }

    .timeline-step {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .timeline-step::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, #2563eb, #f97316);
        z-index: 1;
    }

    .timeline-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .step-content {
        flex: 1;
        max-width: 500px;
        color: white;
        padding: 2rem;
        border-radius: 12px;
        margin-bottom: 2rem;
    }

    .step-content-left {
        background: linear-gradient(135deg, #2563eb, #f97316);
    }

    .step-content-right {
        background: linear-gradient(135deg, #f97316, #2563eb);
    }

    .step-header {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.25rem;
        margin-right: 1rem;
    }

    .step-title {
        font-size: 1.5rem;
        font-weight: bold;
    }

    .step-description {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .step-icon {
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg, #2563eb, #f97316);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        font-size: 32px;
        color: white;
        position: relative;
        z-index: 10;
    }

    /* Desktop Timeline Layout */
    @media (min-width: 768px) {
        .timeline-step {
            flex-direction: row;
            align-items: center;
        }

        .timeline-content {
            flex-direction: row;
            align-items: center;
        }

        .timeline-step:nth-child(odd) .timeline-content {
            justify-content: flex-end;
        }

        .timeline-step:nth-child(even) .timeline-content {
            flex-direction: row-reverse;
            justify-content: flex-end;
        }

        .timeline-step:nth-child(odd) .step-content {
            margin-right: 2rem;
            margin-bottom: 0;
        }

        .timeline-step:nth-child(even) .step-content {
            margin-left: 2rem;
            margin-bottom: 0;
        }

        .step-icon {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .timeline-content::after {
            content: '';
            flex: 1;
            max-width: 50%;
        }
    }

    /* Contact Section */
    .contact {
        background: linear-gradient(135deg, #2563eb, #f97316);
        color: white;
        text-align: center;
    }

    .contact-info {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin: 3rem 0;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .contact-details {
        text-align: left;
    }

    .contact-label {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .contact-value {
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        color: white;
    }

    .contact-value:hover {
        color: #f97316;
    }

    /* Footer */
    .footer {
        background: #1a1a1a;
        color: white;
        text-align: center;
        padding: 2rem 0;
    }

    .footer-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 1rem;
    }

    .footer-logo-icon {
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #2563eb, #f97316);
        border-radius: 4px;
    }

    .footer-text {
        color: #999;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .contact-info {
            display: flex;
            justify-content: left;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 90px;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            border-top: 1px solid #eee;
        }

        .nav-menu.active {
            display: flex;
        }

        .nav-link {
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
            color: #333; /* Darker color for mobile menu links */
        }

        .nav-link:last-child {
            border-bottom: none;
        }

        .hamburger {
            display: block; /* Show hamburger on mobile */
        }

        /* Hamburger animation */
        .hamburger.active .hamburger-line:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        .hamburger.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active .hamburger-line:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        .hero {
            min-height: calc(100vh - 90px); /* Adjust hero height for fixed nav */
            padding-top: 0;
        }

        /* This is your fix to hide the line behind the content */
        .timeline-step::before {
            z-index: -1;
        }
    }
    .contact-image-wrapper {
    width: 80%;
    margin: 3rem auto;
    display: flex;
    justify-content: center;
}

.contact-image {
    max-width: 100%; /* Ensures it never overflows the 80% container */
    height: auto;
    display: block;
}

    /* Smooth Scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Animation */
    .fade-in {
        /*opacity: 0;*/
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
    .contact-image {
        max-width: 400px;
    }