/* =========================================
           1. CORE VARIABLES & GLOBAL STYLES
           ========================================= */
        :root {
            --primary-color: #231f20;   /* Dark Charcoal */
            --secondary-color: #eb1e24; /* Red */
            --gradient-primary: linear-gradient(135deg, #231f20 0%, #4a4244 100%);
            --gradient-secondary: linear-gradient(135deg, #eb1e24 0%, #8b1014 100%);
            --shadow-premium: 0 20px 50px rgba(35, 31, 32, 0.08); /* Charcoal Shadow */
            --text-dark: #222;
            --text-light: #666;
            --input-bg: #fcfcfc;
            
            /* Portfolio Specific Vars */
            --card-shadow: 0 20px 40px rgba(35, 31, 32, 0.08);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.08);
        }
        
        body { font-family: 'DM Sans', sans-serif; overflow-x: hidden; color: var(--text-dark); background-color: #fcfcfc; }
        a { text-decoration: none !important; transition: 0.3s; color: inherit; }
        ul { list-style: none; padding: 0; margin: 0; }
        img { max-width: 100%; height: auto; display: block; }

        /* Helpers */
        .pdt-5 { padding-top: 5rem; }
        .pdb-5 { padding-bottom: 5rem; }
        
        /* Premium Button Animation */
        .orng_cta, .blue_cta { 
            position: relative; overflow: hidden; z-index: 1; 
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .orng_cta { background: var(--secondary-color); color: #fff; padding: 14px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; border: none; }
        .orng_cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 20px rgba(235, 30, 36, 0.3); color: #fff; }
        .orng_cta::after {
            content: ''; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
            background: #000000; z-index: -1; transition: width 0.3s ease; border-radius: 50px;
        }
        .orng_cta:hover::after { width: 100%; }

        .blue_cta { background: var(--primary-color); color: #fff; padding: 10px 25px; border-radius: 50px; font-weight: 700; display: inline-block; border: none; }
        .blue_cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(35, 31, 32, 0.3); color: #fff; background: var(--secondary-color); }

        .text-center { text-align: center; }

        /* Text Reveal Animation Class */
        .reveal-wrap { overflow: hidden; display: block; }
        .reveal-text { display: block; transform: translateY(100%); transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1); opacity: 0; }
        .reveal-visible .reveal-text { transform: translateY(0); opacity: 1; }

        /* Background Pattern Helpers */
        .bg-pattern-dot { background-image: radial-gradient(#e0e0e0 1px, transparent 1px); background-size: 20px 20px; }
        .bg-pattern-line { background-image: linear-gradient(rgba(35, 31, 32, 0.03) 1px, transparent 1px); background-size: 100% 40px; }

        /* Animation Keyframes */
        @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
        @keyframes rotateSlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
        @keyframes shine { 100% { left: 125%; } }

        /* =========================================
           2. HEADER & MEGA MENU
           ========================================= */
        .header { position: sticky; top: 0; z-index: 1100; width: 100%; }
        
        /* Top Header */
        .top_header { background: #000000; color: #fff; padding: 10px 0; font-size: 13px; overflow: hidden; position: relative; z-index: 1101; }
        .top_header a { color: #fff; display: flex; align-items: center; gap: 6px; text-decoration: none; transition: 0.3s; font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
        .top_header a:hover { color: var(--secondary-color); }

        .top_header .desktop-bar { display: flex; justify-content: space-between; align-items: center; width: 100%; }
        .top_header ul { display: flex; gap: 20px; margin: 0; padding: 0; }
        
        .desktop-bar .top-right, .desktop-bar .top-left { gap: 0; }
        .desktop-bar .top-right li, .desktop-bar .top-left li { padding: 0 15px; position: relative; }
        .desktop-bar .top-right li:first-child::after, .desktop-bar .top-left li:first-child::after {
            content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
            height: 14px; width: 1px; background-color: rgba(255,255,255,0.4);
        }
        .desktop-bar .top-right li:last-child { padding-right: 0; }
        .desktop-bar .top-left li:first-child { padding-left: 0; }

        /* Mobile Marquee */
        .marquee-container { display: none; white-space: nowrap; overflow: hidden; width: 100%; background: #000000; padding: 8px 0; }
        .marquee-content { display: flex; animation: marquee 25s linear infinite; padding-left: 0; margin: 0; width: fit-content; }
        .marquee-content li { display: inline-flex; align-items: center; margin-right: 40px; list-style: none; }
        .marquee-content a { color: #fff; display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 13px; text-transform: uppercase; }
        @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Bottom Header */
        .bottom_header { padding: 15px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.05); background: #fff; position: relative; z-index: 100; transition: 0.3s; }
        .bottom_header .container { display: flex; justify-content: space-between; align-items: center; }
        .nav.navbar-menu > ul { display: flex; gap: 25px; margin: 0; align-items: center; } 
        .nav.navbar-menu > ul > li > a { font-weight: 600; color: #000000; font-size: 16px; padding: 10px 0; display: block; letter-spacing: 0.3px; transition: 0.3s;}
        .nav.navbar-menu > ul > li:hover > a { color: var(--secondary-color); }

        .nav.navbar-menu > ul > li.cta-request-head > a {
            background: var(--secondary-color);
            color: #fff !important; padding: 12px 32px; border-radius: 50px; font-weight: 700;
            box-shadow: 0 4px 15px rgba(235, 30, 36, 0.25); margin-left: 15px;
            display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase;
            font-size: 14px; letter-spacing: 0.5px; transition: 0.3s;
        }
        .nav.navbar-menu > ul > li.cta-request-head > a:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 25px rgba(35, 31, 32, 0.4); background: #000000; }

        /* Mega Menu */
        .drop_menu_mega { position: static !important; }
        .mega_menu_section {
            width: 100%; max-width: 100%; left: 0; right: 0; display: flex; padding: 0;
            background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            border-top: 3px solid var(--secondary-color);
            border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
            overflow: hidden; opacity: 0; visibility: hidden;
            transform: translateY(20px); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            top: 100%; position: absolute; z-index: 999;
        }
        .drop_menu_mega:hover .mega_menu_section { opacity: 1; visibility: visible; transform: translateY(0); }
        
        .mega_menu_main { width: 25%; flex-shrink: 0; background: #f8f9fa; border-right: 1px solid #eee; padding-top: 20px; padding-bottom: 20px; margin: 0;}
        .mega_menu_main li { position: relative; }
        .mega_menu_main li a { padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #000000; transition: 0.3s; border-bottom: none; font-size: 15px; }
        .mega_menu_main li.active a, .mega_menu_main li a:hover { background: #fff; color: var(--secondary-color) !important; padding-left: 35px; }
        .mega_menu_main li.active::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--secondary-color); }

        .tabs-content { width: 75%; flex: 1; padding: 40px 50px; background: #fff; min-height: 450px; }
        .sub-mega-menu { display: none; width: 100%; height: 100%; animation: fadeInMenu 0.4s ease-in-out; }
        .sub-mega-menu.active { display: flex; gap: 40px; width: 100%; align-items: start;}
        @keyframes fadeInMenu { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

        /* Menu Grid Helpers */
        .menu-sec-left { width: 65%; }
        .menu-heading-group { margin-bottom: 25px; }
        .menu-sec-left span.menu-title { font-size: 13px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .menu-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 30px; }
        .menu-link-item { display: flex; align-items: flex-start; gap: 15px; padding: 12px; border-radius: 8px; transition: 0.2s; color: #333; text-decoration: none;}
        .menu-link-item:hover { background: #fcfcfc; transform: translateX(5px); }
        .menu-link-icon { width: 36px; height: 36px; background: rgba(235, 30, 36, 0.08); color: var(--secondary-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; transition: 0.3s; margin-top: 3px;}
        .menu-link-item:hover .menu-link-icon { background: var(--secondary-color); color: #fff; }
        .menu-link-text { display: flex; flex-direction: column; }
        .menu-link-text h4 { font-size: 15px !important; font-weight: 700; margin: 0 0 4px 0 !important; color: #111; transition: 0.2s; line-height: 1.2;}
        .menu-link-item:hover .menu-link-text h4 { color: var(--secondary-color); }
        .menu-link-text p { font-size: 13px !important; color: #666; margin: 0 !important; line-height: 1.4; }

        .Menu_section_two_layout { width: 35%; height: 100%;}
        .featured-menu-card { background-color: #000000; background-size: cover; background-position: center; border-radius: 16px; padding: 35px; height: 100%; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; color: #fff; }
        .featured-menu-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(235, 30, 36, 0.85), rgba(35, 31, 32, 0.9)); z-index: 1;}
        .featured-menu-card h4, .featured-menu-card p, .featured-menu-card a { position: relative; z-index: 2; }
        .featured-menu-card h4 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: #fff;}
        .featured-menu-card p { font-size: 14px; opacity: 0.9; margin-bottom: 0; }
        .featured-menu-card a { color: #fff; font-weight: bold; font-size: 14px; display: inline-block; margin-top: 15px; transition: 0.3s; }

        /* =========================================
           3. MOBILE MENU & SIDEBAR
           ========================================= */
        .mobile-toggle { font-size: 24px; color: #000000; cursor: pointer; display: none; z-index: 10; position: relative;}
        .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1150; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(3px); }
        .mobile-menu-overlay.active { opacity: 1; visibility: visible; }
        .mobile-menu-sidebar { position: fixed; top: 0; right: -100%; width: 300px; height: 100%; background: #fff; z-index: 1200; transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.1); display: flex; flex-direction: column; }
        .mobile-menu-sidebar.active { right: 0; }
        .mobile-menu-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu-close { font-size: 24px; color: #000000; cursor: pointer; }
        .mobile-menu-body { padding: 20px; overflow-y: auto; flex: 1; }
        .mobile-nav-list > li { margin-bottom: 0; border-bottom: 1px solid #f5f5f5; }
        .mobile-nav-list > li > a, .mobile-link-header { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; font-size: 16px; font-weight: 600; color: #000000; cursor: pointer; transition: 0.3s;}
        .mobile-nav-list > li > a:hover, .mobile-link-header:hover { color: var(--secondary-color); padding-left: 5px; }
        
        /* Mobile Submenu Styles - Premium Upgrade */
        .mobile-submenu { display: none; background: #fcfcfc; margin: 10px 15px 20px 15px; padding: 10px; border-radius: 12px; border: 1px solid rgba(235, 30, 36, 0.05); box-shadow: inset 0 2px 10px rgba(0,0,0,0.02); position: relative; }
        .mobile-submenu::before { content: ''; position: absolute; left: 0; top: 15px; bottom: 15px; width: 3px; background: var(--secondary-color); border-top-right-radius: 3px; border-bottom-right-radius: 3px; opacity: 0.5; }
        .mobile-submenu li { border-bottom: 1px dashed rgba(0,0,0,0.05); margin-bottom: 0; }
        .mobile-submenu li:last-child { border-bottom: none; }
        .mobile-submenu li a { font-size: 14px; font-weight: 500; color: #555; padding: 12px 15px; display: flex; align-items: center; border-radius: 8px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
        .mobile-submenu li a::before { content: ''; width: 6px; height: 6px; background: #d1d1d1; border-radius: 50%; margin-right: 12px; transition: 0.3s; }
        .mobile-submenu li a:hover { color: var(--secondary-color); background: #fff; box-shadow: 0 4px 12px rgba(35, 31, 32, 0.08); transform: translateX(5px); font-weight: 600; }
        .mobile-submenu li a:hover::before { background: var(--secondary-color); transform: scale(1.5); box-shadow: 0 0 5px rgba(235, 30, 36, 0.4); }
        .submenu-icon { transition: 0.3s; }
        .submenu-icon.rotate { transform: rotate(180deg); color: var(--secondary-color); }
        .mobile-menu-footer { padding: 20px; background: #f9f9f9; border-top: 1px solid #eee; }
        .mobile-menu-footer .orng_cta { width: 100%; justify-content: center; background: var(--secondary-color); color: #fff; padding: 12px; border-radius: 50px; font-weight: bold; transition: 0.3s; display: flex;}
        .mobile-menu-footer .orng_cta:hover { background: #000000; }

        /* Sticky Sidebar Icons */
        .sticky-sidebar { position: fixed; top: 50%; right: 0; transform: translateY(-50%); z-index: 1200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
        .sticky-icon { width: 50px; height: 50px; display: flex; align-items: center; justify-content: flex-end; color: #fff; text-decoration: none; border-top-left-radius: 30px; border-bottom-left-radius: 30px; box-shadow: -4px 5px 15px rgba(0,0,0,0.15); transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; white-space: nowrap; background: #333; }
        .sticky-icon i { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; z-index: 2; }
        .sticky-icon span { font-size: 15px; font-weight: 700; opacity: 0; transform: translateX(20px); transition: all 0.3s ease; margin-right: 0; padding-left: 20px; }
        .sticky-icon:hover { width: 160px; }
        .sticky-icon:hover span { opacity: 1; transform: translateX(0); margin-right: 5px; }
        .icon-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
        .icon-phone { background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); }
        .icon-email { background: linear-gradient(135deg, #ff9900 0%, #e68a00 100%); }

        /* =========================================
           5. PORTFOLIO HERO & LAYOUT (Premium Parallax)
           ========================================= */
        .portfolio_hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%); /* Charcoal Gradient */
            position: relative; 
            padding: 80px 0 60px 0; 
            overflow: hidden; 
            color: #fff; 
            text-align: center;
        }
        
        /* Floating Shapes - Parallax via CSS Animation */
        .bg-shape { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.3; z-index: 0; pointer-events: none; }
        .bg-shape-1 { width: 400px; height: 400px; background: var(--secondary-color); top: -100px; left: -100px; animation: float 10s ease-in-out infinite; }
        .bg-shape-2 { width: 300px; height: 300px; background: #fff; bottom: 50px; right: -50px; opacity: 0.08; animation: float 12s ease-in-out infinite reverse; }
        
        /* Breadcrumb Pill */
        .hero_breadcrumb_list {
            display: inline-flex; align-items: center; gap: 10px;
            list-style: none; 
            padding: 6px 24px; 
            margin: 0 auto 15px; 
            background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(12px);
            border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative; z-index: 2;
        }
        .hero_breadcrumb_list li { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; }
        .hero_breadcrumb_list li a { color: #fff; transition: 0.3s; }
        .hero_breadcrumb_list li a:hover { color: var(--secondary-color); }
        .hero_breadcrumb_list li::after { content: '/'; margin-left: 10px; color: var(--secondary-color); font-weight: 400; opacity: 0.7; }
        .hero_breadcrumb_list li:last-child { color: var(--secondary-color); }
        .hero_breadcrumb_list li:last-child::after { display: none; }

        .portfolio_hero h1 {
            font-size: 4.5rem; font-weight: 800; margin-bottom: 25px; line-height: 1.1; position: relative; z-index: 2; letter-spacing: -1px;
        }
        .txt-type {
            background: linear-gradient(135deg, #eb1e24 0%, #8b1014 50%, #eb1e24 100%); /* Red Gradient */
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
            border-right: 4px solid #fff; padding-right: 8px;
            animation: blink 0.9s infinite;
        }
        @keyframes blink { 0%, 100% { border-color: transparent; } 50% { border-color: #fff; } }
        .portfolio_hero p { font-size: 1.3rem; color: rgba(255,255,255,0.85); max-width: 750px; margin: 0 auto; position: relative; z-index: 2; font-weight: 300; }

        /* --- Section Titles with Reveal --- */
        .service-section-header { text-align: center; margin-bottom: 60px; position: relative; z-index: 2; }
        .service-section-header span { color: var(--secondary-color); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; display: block; margin-bottom: 10px; }
        .service-section-header h2 { font-size: 2.8rem; font-weight: 800; color: var(--primary-color); margin: 0; }
        .service-section-header p { max-width: 600px; margin: 15px auto 0; color: #666; font-size: 16px; }

        /* --- Card Styles (Premium Shine) --- */
        .project-card, .laptop-card, .tech-card, .graphic-card {
            position: relative; overflow: hidden; /* Essential for shine */
        }
        /* Shine Effect Overlay */
        .project-card::after, .laptop-card::after, .tech-card::after, .graphic-card::after {
            content: ""; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
            background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
            transform: skewX(-25deg); transition: 0s; pointer-events: none; z-index: 10;
        }
        .project-card:hover::after, .laptop-card:hover::after, .tech-card:hover::after, .graphic-card:hover::after {
            left: 100%; transition: 0.7s ease-in-out;
        }

        .project-card {
            position: relative; border-radius: 20px; overflow: hidden; height: 420px;
            cursor: pointer; background: #fff; box-shadow: var(--card-shadow);
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .project-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(35, 31, 32, 0.1); }
        .project-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
        .project-card:hover .project-img { transform: scale(1.1); }
        
        /* Stats Overlay */
        .dm-section { position: relative; overflow: hidden; }
        .dm-section::before { content: ''; position: absolute; top: 0; right: 0; width: 300px; height: 300px; background: url('https://www.transparenttextures.com/patterns/cubes.png'); opacity: 0.05; z-index: 0; }
        
        .stats-overlay {
            position: absolute; bottom: 20px; left: 20px; right: 20px;
            background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
            padding: 25px; border-radius: 16px; transform: translateY(10px); opacity: 0;
            transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 5;
        }
        .project-card:hover .stats-overlay { transform: translateY(0); opacity: 1; }
        .stats-overlay h4 { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: var(--primary-color); }
        .stats-overlay span { font-size: 12px; color: #777; text-transform: uppercase; letter-spacing: 1px; }
        .stat-grid { display: flex; justify-content: space-between; margin-top: 15px; border-top: 1px solid #eee; padding-top: 15px; }
        .sg-item h5 { color: var(--secondary-color); font-weight: 800; margin: 0; font-size: 18px; }
        .sg-item p { font-size: 11px; margin: 0; }

        /* Zig-Zag Layout */
        .web-design-section { position: relative; overflow: hidden; }
        .blob-bg { position: absolute; z-index: -1; opacity: 0.1; }
        .blob-1 { top: 10%; left: -5%; width: 400px; height: 400px; background: var(--secondary-color); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: rotateSlow 20s infinite linear; }
        
        .zigzag-row { display: flex; align-items: center; margin-bottom: 80px; gap: 50px; position: relative; z-index: 1; }
        .zigzag-row:last-child { margin-bottom: 0; }
        .zigzag-row:nth-child(even) { flex-direction: row-reverse; }
        
        .zigzag-img-wrap {
            flex: 1; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            position: relative; height: 400px; transition: 0.5s;
        }
        .zigzag-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .zigzag-img-wrap:hover img { transform: scale(1.05); }
        .zigzag-img-wrap:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(35, 31, 32, 0.15); }
        
        .zigzag-content { flex: 1; }
        .zigzag-content h3 { font-size: 28px; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; }
        .zigzag-content p { color: #666; line-height: 1.7; margin-bottom: 25px; }
        .zigzag-tags span { background: #fff; padding: 6px 15px; border-radius: 30px; font-size: 12px; color: var(--primary-color); font-weight: 600; margin-right: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

        /* Laptop Card (Smaller Screens) */
        .laptop-card { background: #fcfcfc; border-radius: 24px; padding: 40px 30px 0; height: 100%; text-align: center; transition: 0.3s; border: 1px solid rgba(0,0,0,0.03); overflow: hidden; }
        .laptop-card:hover { background: #fff; box-shadow: var(--shadow-premium); transform: translateY(-5px); }
        .laptop-card h4 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: var(--primary-color); }
        .laptop-card p { font-size: 14px; color: #666; margin-bottom: 30px; }
        .laptop-screen { background: #222; border-radius: 12px 12px 0 0; padding: 10px 10px 0; display: inline-block; box-shadow: 0 20px 50px rgba(0,0,0,0.2); width: 100%; max-width: 350px; margin: 0 auto; transform: translateY(20px); transition: 0.5s; }
        .laptop-card:hover .laptop-screen { transform: translateY(0); }
        .laptop-screen img { border-radius: 6px 6px 0 0; width: 100%; }

        /* Dark Mode Tech Hub */
        .section-dark-tech { background: #111; color: #fff; position: relative; overflow: hidden; }
        .tech-grid-bg { 
            position: absolute; inset: 0; 
            background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); 
            background-size: 40px 40px; opacity: 0.3; 
        }
        .tech-card {
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px; padding: 40px 30px; height: 100%; transition: 0.4s;
            display: flex; flex-direction: column; position: relative; z-index: 2;
        }
        .tech-card:hover { border-color: var(--secondary-color); box-shadow: 0 0 30px rgba(235, 30, 36, 0.15); transform: translateY(-10px); background: rgba(255,255,255,0.08); } /* Red box shadow */
        .tech-icon { width: 60px; height: 60px; background: rgba(235, 30, 36, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--secondary-color); margin-bottom: 25px; } /* Red background */
        .tech-card h4 { font-size: 22px; font-weight: 700; margin-bottom: 15px; }
        .tech-card p { color: rgba(255,255,255,0.6); margin-bottom: 20px; line-height: 1.6; }
        .tech-stack-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
        .tech-badge { font-size: 11px; background: rgba(255,255,255,0.1); padding: 5px 12px; border-radius: 30px; font-weight: 600; color: #fff; }

        /* Masonry (Graphic Design) */
        .graphic-grid-sec { background: #fff; }
        .graphic-card { position: relative; border-radius: 16px; overflow: hidden; height: 350px; cursor: pointer; }
        .graphic-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .graphic-card:hover img { transform: scale(1.1); }
        .graphic-overlay {
            position: absolute; inset: 0; background: rgba(35, 31, 32, 0.85); display: flex; /* Charcoal */
            align-items: center; justify-content: center; flex-direction: column;
            opacity: 0; transition: 0.3s;
        }
        .graphic-card:hover .graphic-overlay { opacity: 1; }
        .graphic-overlay h4 { color: #fff; font-size: 24px; font-weight: 700; transform: translateY(20px); transition: 0.3s; }
        .graphic-card:hover .graphic-overlay h4 { transform: translateY(0); }

        /* Growth Blueprint & Featured Case */
        .growth_blueprint { background: #111; position: relative; padding: 120px 0; overflow: hidden; color: #fff; } /* Dark Background */
        .growth_blueprint::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.5; pointer-events: none; }
        
        /* Animated Line */
        .process-line { 
            position: absolute; top: 50%; left: 15%; width: 0%; height: 2px; /* Start width 0 */
            background: linear-gradient(90deg, rgba(235, 30, 36, 0) 0%, rgba(235, 30, 36, 0.5) 50%, rgba(235, 30, 36, 0) 100%); /* Red Gradient */
            transform: translateY(-50%); z-index: 1; transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        /* Active class for line animation via JS */
        .growth_blueprint.active-line .process-line { width: 70%; }

        .blueprint-card { background: rgba(35, 31, 32, 0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.08); padding: 40px 30px; border-radius: 24px; position: relative; z-index: 2; transition: 0.4s ease; height: 100%; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
        .blueprint-card:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--secondary-color); transform: translateY(-10px); box-shadow: 0 30px 60px rgba(235, 30, 36, 0.15); }
        .step-badge { width: 50px; height: 50px; background: #222; border: 2px solid var(--secondary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; position: absolute; top: -25px; left: 50%; transform: translateX(-50%); z-index: 3; box-shadow: 0 0 20px rgba(235, 30, 36, 0.4); }
        .blueprint-icon { font-size: 32px; color: var(--secondary-color); margin: 20px 0 20px; display: inline-block; }
        .blueprint-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; }
        .blueprint-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; margin: 0; }

        .featured_case { background: #fff; color: #333; padding: 120px 0; position: relative; overflow: hidden; }
        .case-img-wrap { position: relative; height: 500px; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
        .case-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .case-info-card { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 40px 80px rgba(0,0,0,0.1); position: relative; margin-left: -80px; margin-top: 40px; z-index: 5; border-left: 5px solid var(--secondary-color); }
        .case-subtitle { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-color); display: block; margin-bottom: 15px; }
        .case-info-card h3 { font-size: 36px; font-weight: 800; color: #111; margin-bottom: 20px; line-height: 1.2; }
        .case-info-card p { color: #666; font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
        .case-stat-row { display: flex; gap: 40px; margin-bottom: 30px; border-bottom: 1px solid #eee; padding-bottom: 30px; }
        .c-stat h2 { font-size: 42px; font-weight: 800; color: var(--secondary-color); margin: 0; line-height: 1; }
        .c-stat span { font-size: 13px; font-weight: 600; text-transform: uppercase; color: #333; }

        /* =========================================
           4. FOOTER (Exact Copy from Index)
           ========================================= */
        .premium-footer { position: relative; color: #fff; padding-top: 80px; padding-bottom: 30px; overflow: visible; margin-top: 0; z-index: 5; background: #231f20 !important; border: none !important;}
        .footer-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #231f20 !important; overflow: hidden; z-index: 0; }
        .footer-bg-wrapper::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px); background-size: 40px 40px; opacity: 0.6; pointer-events: none; display: none !important;}
        .footer-watermark { display: none !important;}
        
        .footer-floating-card { position: relative; margin: 0 auto 60px auto; width: 100%; max-width: 1140px; background: linear-gradient(135deg, var(--secondary-color) 0%, #8b1014 100%) !important; border: 1px solid rgba(255, 255, 255, 0.15); box-shadow: 0 20px 40px rgba(235, 30, 36, 0.4) !important; border-radius: 24px; padding: 40px 50px; z-index: 10; overflow: hidden; display: flex; align-items: center; justify-content: space-between; }
        .footer-floating-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent); transform: skewX(-25deg); animation: cardShine 6s infinite; }
        @keyframes cardShine { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }
        .floating-card-text h3 { font-size: 2rem; font-weight: 700; margin: 0 0 5px; color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
        .floating-card-text p { font-size: 1.1rem; margin: 0; color: rgba(255,255,255,0.8) !important; }
        .floating-card-btn .btn-glow { background: #ffffff !important; color: var(--secondary-color) !important; padding: 15px 35px; border-radius: 50px; font-weight: 700; font-size: 16px; transition: 0.3s; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); display: inline-block; position: relative; z-index: 2; align-items: center;}
        .floating-card-btn .btn-glow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); background: #000000 !important; color: #ffffff !important; }
        
        .footer-main-content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 50px; }
        .footer-logo-area p { color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 25px; font-size: 15px; }
        .footer-contact-info { margin-bottom: 25px; }
        .footer-contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, 0.8) !important; line-height: 1.5; }
        .footer-contact-info i { color: var(--secondary-color) !important; margin-top: 4px; font-size: 16px; width: 20px; text-align: center;}
        .footer-contact-info a { color: rgba(255, 255, 255, 0.8) !important; transition: 0.3s; text-decoration: none;}
        .footer-contact-info a:hover { color: var(--secondary-color) !important; }
        .footer-social-icons { display: flex; gap: 12px; margin-bottom: 30px;}
        .footer-social-icons a { width: 38px; height: 38px; background: rgba(255, 255, 255, 0.05) !important; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff !important; transition: all 0.3s ease; border: 1px solid rgba(255, 255, 255, 0.1) !important; }
        .footer-social-icons a:hover { background: #eb1e24 !important; border-color: #eb1e24 !important; transform: translateY(-3px); box-shadow: 0 5px 15px rgba(235, 30, 36, 0.3); }
        .footer-widget-title { color: #ffffff !important; font-size: 1.1rem; font-weight: 700; margin-bottom: 25px; position: relative; display: inline-block; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 10px;}
        .footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--secondary-color) !important; transition: width 0.3s ease; border-radius: 2px;}
        .col-lg-3:hover .footer-widget-title::after, .col-lg-2:hover .footer-widget-title::after { width: 100%; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: rgba(255,255,255,0.7) !important; font-size: 0.95rem; display: flex; align-items: center; transition: all 0.3s ease; position: relative; padding-left: 0; }
        .footer-links a::before { content: '›'; color: var(--secondary-color) !important; font-size: 18px; line-height: 1; opacity: 1; transition: all 0.3s ease; margin-right: 8px; }
        .footer-links a:hover { color: var(--secondary-color) !important; padding-left: 5px; }
        .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.6) !important; }
        .footer-bottom-links { display: flex; gap: 20px; }
        .footer-bottom-links a { color: rgba(255,255,255,0.6) !important; }
        .footer-bottom-links a:hover { color: var(--secondary-color) !important; text-decoration: underline !important; }

        @media (max-width: 991px) {
            .portfolio_hero h1 { font-size: 3rem; }
            .hero_breadcrumb_list { display: none !important; } /* Ensure hidden on mobile */
            .process-line { display: none; }
            .blueprint-card { margin-bottom: 30px; text-align: center; }
            .case-info-card { margin-left: 0; margin-top: -50px; width: 90%; margin-right: auto; margin-left: auto; }
            .case-img-wrap { height: 300px; }
            .zigzag-row { flex-direction: column !important; gap: 20px; }
            .zigzag-img-wrap { height: 250px; width: 100%; }

            .nav.navbar-menu { display: none; }
            .mega_menu_section { display: none; }
            .mobile-toggle { display: block; }
            .top_header .desktop-bar { display: none; }
            .marquee-container { display: flex; }
            .footericons { display: block; }
            .footer-floating-card { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; width: 100%; top: auto; position: relative; margin-top: -50px; margin-bottom: 40px;}
            .premium-footer { padding-top: 50px; }
            .footer-bottom-bar { flex-direction: column; text-align: center; }
            .footer-bottom-links a { margin: 0 10px; }
        }

        /* Floating Footer Icons */
        .footericons { position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; z-index: 999; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 10px 0; display: none; }
        .footericons ul { display: flex; justify-content: space-around; margin: 0; }
        .footericons ul li a { display: flex; flex-direction: column; align-items: center; font-size: 12px; color: #333; font-weight: 600; }
        .footericons img { width: 20px; margin-bottom: 5px; }

        /*country flag footer*/
        .country-flag {
            width: 22px;
            height: auto;
            margin-right: 0px;
            margin-top:4px;
            vertical-align: middle;
        }