    /* Service page specific styles */
    .service-header {
        background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
        color: white;
        padding: 120px 0 80px;
        margin-top: 80px; /* Account for fixed header */
    }

    .service-breadcrumb {
        margin-bottom: 2rem;
    }

    .service-breadcrumb .breadcrumb {
        display: flex;
        gap: 0.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .service-breadcrumb .breadcrumb li {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .service-breadcrumb .breadcrumb li:not(:last-child)::after {
        content: '/';
        margin-left: 0.5rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .service-breadcrumb .breadcrumb a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .service-breadcrumb .breadcrumb a:hover {
        color: #3b82f6;
    }

    .service-hero {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .service-hero h1 {
        color: white;
        font-size: 3rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .service-subtitle {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .service-highlights {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .highlight-item {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        backdrop-filter: blur(10px);
    }

    .service-cta {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .service-hero-visual {
        position: relative;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .floating-elements {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .element {
        position: absolute;
        width: 80px;
        height: 80px;
        background: rgba(59, 130, 246, 0.2);
        border: 2px solid rgba(59, 130, 246, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        animation: float 6s ease-in-out infinite;
        backdrop-filter: blur(10px);
    }

    .element-1 { top: 20%; left: 20%; animation-delay: 0s; }
    .element-2 { top: 60%; right: 20%; animation-delay: 1.5s; }
    .element-3 { bottom: 20%; left: 30%; animation-delay: 3s; }
    .element-4 { top: 10%; right: 30%; animation-delay: 4.5s; }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    /* Service Offerings */
    .service-offerings {
        padding: 80px 0;
        background: #f8fafc;
    }

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

    .offering-card {
        background: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .offering-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .offering-card.featured {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        transform: scale(1.02);
        border: none;
    }

    .offering-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
        display: block;
    }

    .offering-card h3 {
        margin-bottom: 1rem;
        font-size: 1.5rem;
        color: #1a1a1a;
    }

    .offering-card.featured h3 {
        color: white;
    }

    .offering-card p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
        color: #64748b;
    }

    .offering-card.featured p {
        color: rgba(255, 255, 255, 0.9);
    }

    .offering-features {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .offering-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #64748b;
        font-size: 0.95rem;
    }

    .offering-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #3b82f6;
        font-weight: bold;
    }

    .offering-card.featured .offering-features li {
        color: rgba(255, 255, 255, 0.9);
    }

    .offering-card.featured .offering-features li::before {
        color: white;
    }

    /* Development Process */
    .development-process {
        padding: 80px 0;
        background: white;
    }

    .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .process-step {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }

    .step-number {
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .step-content h3 {
        margin-bottom: 1rem;
        color: #1a1a1a;
        font-size: 1.3rem;
    }

    .step-content p {
        margin-bottom: 1.5rem;
        color: #64748b;
        line-height: 1.6;
    }

    .step-deliverables {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .step-deliverables li {
        padding: 0.25rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #64748b;
        font-size: 0.9rem;
    }

    .step-deliverables li::before {
        content: '•';
        position: absolute;
        left: 0;
        color: #3b82f6;
        font-weight: bold;
    }

    /* Technologies Section */
    .technologies-section {
        padding: 80px 0;
        background: #f8fafc;
    }

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

    .tech-category h3 {
        margin-bottom: 2rem;
        color: #1a1a1a;
        font-size: 1.3rem;
        text-align: center;
    }

    .tech-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .tech-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        background: white;
        padding: 1.5rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .tech-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: #3b82f6;
    }

    .tech-icon {
        font-size: 1.5rem;
        width: 40px;
        text-align: center;
    }

    .tech-info strong {
        display: block;
        color: #1a1a1a;
        margin-bottom: 0.25rem;
        font-size: 1rem;
    }

    .tech-info p {
        color: #64748b;
        font-size: 0.9rem;
        margin: 0;
    }

    /* Featured Projects */
    .featured-projects {
        padding: 80px 0;
        background: white;
    }

    .projects-showcase {
        margin-bottom: 3rem;
    }

    .project-highlight {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
        align-items: center;
    }

    .project-image {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        height: 300px;
        background: #f1f5f9;
    }

    .project-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .project-highlight:hover .project-image img {
        transform: scale(1.05);
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(59, 130, 246, 0.9);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .project-highlight:hover .project-overlay {
        opacity: 1;
    }

    .project-link {
        color: white;
        text-decoration: none;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border: 2px solid white;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .project-link:hover {
        background: white;
        color: #3b82f6;
    }

    .project-category {
        color: #3b82f6;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .project-details h3 {
        margin-bottom: 1rem;
        font-size: 2rem;
        color: #1a1a1a;
    }

    .project-details p {
        color: #64748b;
        line-height: 1.6;
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .project-features {
        margin-bottom: 2rem;
    }

    .project-features h4 {
        margin-bottom: 1rem;
        color: #1a1a1a;
        font-size: 1.1rem;
    }

    .project-features ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 0.5rem;
    }

    .project-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #64748b;
    }

    .project-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #22c55e;
        font-weight: bold;
    }

    .project-tech {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tech-tag {
        background: #f1f5f9;
        color: #475569;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 500;
        border: 1px solid #e2e8f0;
    }

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

    .project-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

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

    .project-thumbnail {
        height: 180px;
        overflow: hidden;
        background: #f1f5f9;
    }

    .project-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .project-card:hover .project-thumbnail img {
        transform: scale(1.1);
    }

    .project-info {
        padding: 1.5rem;
    }

    .project-info h4 {
        margin-bottom: 0.5rem;
        color: #1a1a1a;
        font-size: 1.1rem;
    }

    .project-info p {
        color: #64748b;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .project-tech-mini {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .project-tech-mini span {
        background: #f1f5f9;
        color: #475569;
        padding: 0.2rem 0.5rem;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 500;
    }

    .projects-cta {
        text-align: center;
        margin-top: 3rem;
    }

    /* Pricing Section */
    .pricing-section {
        padding: 80px 0;
        background: #f8fafc;
    }

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

    .pricing-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        border: 2px solid transparent;
    }

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

    .pricing-card.featured {
        border-color: #3b82f6;
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    }

    .pricing-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 0 0 12px 12px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 1;
    }

    .pricing-header {
        padding: 2.5rem 2rem 1rem;
        text-align: center;
    }

    .pricing-card.featured .pricing-header {
        padding-top: 3.5rem;
    }

    .pricing-header h3 {
        margin-bottom: 1rem;
        color: #1a1a1a;
        font-size: 1.5rem;
    }

    .price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }

    .currency {
        font-size: 1.5rem;
        color: #3b82f6;
        font-weight: 600;
    }

    .amount {
        font-size: 3.5rem;
        font-weight: 800;
        color: #3b82f6;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .period {
        font-size: 1rem;
        color: #64748b;
        font-weight: 500;
    }

    .pricing-features {
        padding: 0 2rem 2rem;
    }

    .pricing-features ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .pricing-features li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: #64748b;
        border-bottom: 1px solid #f1f5f9;
    }

    .pricing-features li:last-child {
        border-bottom: none;
    }

    .pricing-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #22c55e;
        font-weight: bold;
        font-size: 1.1rem;
    }

    .pricing-cta {
        padding: 0 2rem 2rem;
        text-align: center;
    }

    .pricing-note {
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
        color: #64748b;
        padding: 2rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    .pricing-note a {
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
    }

    .pricing-note a:hover {
        text-decoration: underline;
    }

    /* Service CTA */
    .service-cta {
        /* background: linear-gradient(135deg, #3b82f6, #1d4ed8); */
        color: white;
        text-align: center;
        padding: 80px 0;
    }

    .service-cta h2 {
        color: white;
        margin-bottom: 1rem;
        font-size: 2.5rem;
    }

    .service-cta p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.6;
    }

    .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }

    .cta-features {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .cta-feature {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: white;
        font-weight: 500;
    }

    .feature-icon {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: bold;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .service-header {
            padding: 100px 0 60px;
        }
        
        .service-hero {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: center;
        }
        
        .service-hero h1 {
            font-size: 2rem;
        }
        
        .service-cta {
            justify-content: center;
        }
        
        .offerings-grid {
            grid-template-columns: 1fr;
        }
        
        .offering-card.featured {
            transform: none;
        }
        
        .process-step {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .tech-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .project-highlight {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .other-projects {
            grid-template-columns: 1fr;
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
        }
        
        .pricing-card.featured {
            transform: none;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .cta-features {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }
        
        .service-cta h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 480px) {
        .service-hero h1 {
            font-size: 1.8rem;
        }
        
        .service-subtitle {
            font-size: 1rem;
        }
        
        .service-highlights {
            justify-content: center;
        }
        
        .offering-card,
        .pricing-card {
            margin: 0 10px;
        }
    }
