    /* Global Justification */
    .hero-description, 
    .section-description, 
    .tech-card-description {
        text-align: justify;
        text-justify: inter-word;
    }
    
    /* Hero Section */
        .hero {
            min-height: 60vh; /* Professional height for project pages */
            background: #0D1410; /* Fallback deep green */
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 100px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 1; /* Reset to 1 since we are using a gradient overlay in PHP */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
        }
        
        .hero-grid {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image: 
                linear-gradient(rgba(198, 168, 103, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(198, 168, 103, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: 1;
        }

        .hero-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(45, 90, 61, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            top: 10%;
            right: 10%;
            z-index: 1;
            pointer-events: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            padding: 80px 0 100px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 32px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7); /* Light white/grey */
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #C6A867; /* Gold on hover */
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.4);
        }

        .breadcrumb-current {
    color: #C6A867; /* Change from Green to Gold for visibility */
    font-weight: 500;
}

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 24px;
            background: rgba(45, 90, 61, 0.2);
            border-radius: 100px;
            border: 1px solid rgba(45, 90, 61, 0.4);
            margin-bottom: 24px;
        }

        .hero-badge-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #E8D5A3; /* A very light gold that shines on dark backgrounds */
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(40px, 6vw, 68px);
            font-weight: 400;
            color: #FFFFFF;
            line-height: 1.1;
            max-width: 900px;
            margin-bottom: 24px;
        }

        .hero-title-highlight {
            font-style: italic;
            background: linear-gradient(135deg, #2D5A3D 0%, #4A8B5C 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 18px;
            color: #A8A49C;
            line-height: 1.8;
            max-width: 800px;
        }


    /* Technology Driven Section */
    .tech-section {
        background: #FAFAF8;
        padding: 120px 40px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .section-eyebrow {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #2D5A3D;
        margin-bottom: 16px;
    }

    .section-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(36px, 5vw, 52px);
        font-weight: 400;
        color: #1A241E;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .section-description {
        font-family: 'DM Sans', sans-serif;
        font-size: 17px;
        color: #666;
        line-height: 1.8;
        max-width: 700px;
        margin: 0 auto;
    }

    .tech-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .tech-card {
        background: #FFFFFF;
        border-radius: 24px;
        padding: 48px 40px;
        border: 1px solid rgba(0,0,0,0.06);
        text-align: center;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .tech-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #2D5A3D, #4A8B5C);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .tech-card:hover::before {
        transform: scaleX(1);
    }

    .tech-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 24px 56px rgba(0,0,0,0.12);
    }

    .tech-number {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 72px;
        font-weight: 400;
        color: rgba(45, 90, 61, 0.15);
        line-height: 1;
        margin-bottom: 20px;
    }

    .tech-card-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 28px;
        font-weight: 500;
        color: #2D5A3D;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .tech-card-description {
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 28px;
    }

    .tech-card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        background: rgba(45, 90, 61, 0.1);
        border-radius: 100px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #2D5A3D;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .tech-card-link:hover {
        background: #2D5A3D;
        color: #FFFFFF;
        transform: translateX(4px);
    }

    /* Related Projects */
    .related-section {
        background: #1A241E;
        padding: 100px 40px;
    }

    .related-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .related-eyebrow {
        font-family: 'DM Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #2D5A3D;
        margin-bottom: 16px;
    }

    .related-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: clamp(36px, 5vw, 48px);
        font-weight: 400;
        color: #FFFFFF;
    }

    .related-title-highlight {
        font-style: italic;
        color: #4A8B5C;
    }

    .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 28px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .related-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 20px;
        padding: 40px;
        transition: all 0.4s ease;
        cursor: pointer;
    }

    .related-card:hover {
        background: rgba(255,255,255,0.06);
        transform: translateY(-6px);
    }

    .related-number {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 48px;
        font-weight: 400;
        color: rgba(198, 168, 103, 0.5);
        margin-bottom: 16px;
    }

    .related-card-title {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 24px;
        font-weight: 500;
        color: #FFFFFF;
    }
    
    /* Ensure the link wraps the card fully */
    .related-grid a {
        display: block;
        text-decoration: none;
        transition: all 0.4s ease;
    }
    
    /* Optional: Slight color shift on the number when hovering the whole box */
    .related-card:hover .related-number {
        color: rgba(198, 168, 103, 1); /* Number brightens on hover */
        transition: color 0.4s ease;
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .hero {
            min-height: 70vh;
            margin-top: 70px;
        }
        
        .hero-title {
            font-size: 36px;
        }
    }