        /* =========================================
           1. CORE VARIABLES & GLOBAL STYLES
           ========================================= */
        :root {
            --primary-color: #231f20;   /* Dark Charcoal */
            --secondary-color: #eb1e24; /* Red */
            --gradient-secondary: linear-gradient(135deg, #eb1e24 0%, #8b1014 100%);
            --gradient-primary: linear-gradient(135deg, #231f20 0%, #4a4244 100%);
            --shadow-premium: 0 20px 50px rgba(35, 31, 32, 0.08);
            --dark-bg: #000000;
            --text-gray: #666;
        }

        body { font-family: 'DM Sans', sans-serif; background-color: #fcfcfc; }

        /* --- Dynamic Hero Style (Matching Portfolio) --- */
        .portfolio_hero {
            padding: 150px 0 100px;
            background: var(--dark-bg);
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .bg-shape {
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
            opacity: 0.15;
        }
        /* Red and Charcoal Blur Shapes */
        .bg-shape-1 { background: var(--secondary-color); top: -100px; right: -50px; }
        .bg-shape-2 { background: var(--primary-color); bottom: -100px; left: -50px; }

        /* Enhanced Frosted Glass Breadcrumb */
        .hero_breadcrumb_list {
            display: inline-flex;    /* Keeps items in a row */
            align-items: center;
            width: fit-content;      /* This stops it from stretching full width! */
            padding: 8px 24px;       /* Adjust padding to make it look neat */
            border-radius: 50px;     /* Gives it that nice pill-shaped curved edge */
            list-style: none;
            margin-bottom: 25px;     /* Space between breadcrumb and the heading */
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .hero_breadcrumb_list li { 
            color: rgba(255, 255, 255, 0.7); 
            font-size: 13px; 
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
        }
        .hero_breadcrumb_list li a { color: #fff; text-decoration: none; transition: 0.3s; }
        .hero_breadcrumb_list li a:hover { color: var(--secondary-color); }
        .hero_breadcrumb_list li:not(:last-child)::after { content: "/"; margin: 0 12px; color: var(--secondary-color); opacity: 0.8; }

        .portfolio_hero h1 { 
            font-size: 4rem; 
            font-weight: 800; 
            line-height: 1.1; 
            position: relative; 
            z-index: 1; 
            letter-spacing: -1px;
        }

        /* Typewriter text color - Red */
        .txt-type { color: var(--secondary-color); }

        /* --- Industries Grid Section --- */
        .industry-section { padding: 100px 0; background: #fff; }

        .service-section-header { margin-bottom: 60px; }
        .reveal-text span { 
            color: var(--secondary-color); 
            font-weight: 800; 
            letter-spacing: 2px; 
            text-transform: uppercase; 
            font-size: 12px; 
            display: block; 
            margin-bottom: 10px;
        }
        .reveal-text h2 { color: var(--primary-color); font-weight: 800; font-size: 2.8rem; margin-top: 10px; }

        /* --- Premium Bento Cards --- */
        .industry-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .ind-card {
            position: relative;
            height: 400px;
            border-radius: 24px;
            overflow: hidden;
            background: #f4f4f4;
            transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .ind-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.8s;
            filter: grayscale(20%);
        }

        /* Charcoal Gradient Overlay */
        .ind-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(35, 31, 32, 0.95) 10%, rgba(35, 31, 32, 0) 70%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            color: #fff;
        }

        /* Red Icon Box */
        .ind-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient-secondary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 15px;
            font-size: 20px;
            box-shadow: 0 8px 15px rgba(235, 30, 36, 0.3);
        }

        .ind-card h4 { font-weight: 700; font-size: 22px; margin-bottom: 10px; }
        .ind-card p { 
            font-size: 14px; 
            line-height: 1.6; 
            opacity: 0; 
            height: 0; 
            transition: 0.4s; 
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .ind-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(35, 31, 32, 0.15); }
        .ind-card:hover img { transform: scale(1.1); filter: grayscale(0%); }
        .ind-card:hover p { opacity: 1; height: auto; margin-top: 10px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 992px) { 
            .industry-grid { grid-template-columns: repeat(2, 1fr); } 
        }
        
        @media (max-width: 768px) { 
            .industry-grid { grid-template-columns: 1fr; }
            .portfolio_hero { padding: 120px 0 80px; text-align: center; }
            .portfolio_hero h1 { font-size: 2.5rem; }
            .hero_breadcrumb_list { margin: 0 auto 20px auto; }
            .reveal-text h2 { font-size: 2rem; }
        }
        
        /*country flag footer*/
        .country-flag {
            width: 22px;
            height: auto;
            margin-right: 0px;
            margin-top: 4px;
            vertical-align: middle;
        }    