                        /* =========================================
           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); /* Charcoal shadow */
            --text-dark: #222;
            --bg-light: #fcfcfc;
        }
        
        body { 
            font-family: 'DM Sans', sans-serif; 
            overflow-x: hidden; 
            color: #333; 
            background-color: var(--bg-light); 
            position: relative;
        }

        /* PREMIUM BACKGROUND EFFECT */
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: 
                radial-gradient(circle at 10% 10%, rgba(235, 30, 36, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(35, 31, 32, 0.03) 0%, transparent 40%);
            z-index: -1;
            pointer-events: none;
            animation: bgPulse 10s ease-in-out infinite alternate;
        }

        @keyframes bgPulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }

        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; }
        .commn_head span { color: var(--secondary-color); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
        .commn_head h2 { color: var(--primary-color); font-weight: 700; font-size: 2.8rem; margin: 0 0 20px; }
        .commn_head p { max-width: 800px; margin: 0 auto; color: #555; line-height: 1.6; }
        .text-center { text-align: center; }

        /* Buttons Helpers */
        .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; transition: 0.3s; border: none; }
        .orng_cta:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); }
        .blue_cta { background: var(--primary-color); color: #fff; padding: 14px 35px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; transition: 0.3s; border: none; }
        .blue_cta:hover { background: var(--secondary-color); color: #fff; transform: translateY(-3px); }

        /* =========================================
           4. SERVICES PAGE SPECIFIC STYLES
           ========================================= */
        
       .services-hero {
    position: relative;
    background: url('https://www.finedigitalmarketing.agency/assets/images/breadcrumb/breadcrumb.webp') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
}
        /* Premium Unique Breadcrumb */
        .hero-breadcrumb {
            display: inline-flex;
            align-items: center;
            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);
            padding: 8px 24px;
            border-radius: 50px;
            margin-bottom: 25px;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .hero-breadcrumb:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .hero-breadcrumb a { color: #fff; text-decoration: none; transition: 0.3s; position: relative; }
        .hero-breadcrumb a:hover { color: var(--secondary-color); }
        .hero-breadcrumb i.separator { font-size: 10px; margin: 0 12px; color: var(--secondary-color); opacity: 0.8; }
        .hero-breadcrumb .active-page { color: var(--secondary-color); }

        .services-hero-text { position: relative; z-index: 2; color: #fff; text-align: center; max-width: 900px; margin: 0 auto; }
        
        /* Matched H1 Size */
        .services-hero-text h1 { 
            font-size: 2.8rem; 
            font-weight: 900; 
            margin-bottom: 25px; 
            letter-spacing: -1px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .services-hero-text p { font-size: 1.2rem; opacity: 0.9; font-weight: 300; margin-bottom: 0; line-height: 1.6; text-shadow: 0 2px 5px rgba(0,0,0,0.1); }

        /* Service Cluster Layout */
        .service-cluster { padding: 80px 0; border-bottom: 1px solid rgba(0,0,0,0.03); position: relative; overflow: hidden; }
        .cluster-label { 
            writing-mode: vertical-rl; text-orientation: mixed; 
            position: absolute; left: 0; top: 100px; 
            font-size: 80px; font-weight: 900; color: rgba(35, 31, 32, 0.03); /* Charcoal shadow text */
            text-transform: uppercase; z-index: 0; letter-spacing: 10px;
        }
        
        /* Premium Service Card - Animation & Design */
        .premium-service-card {
            background: #fff; border-radius: 20px; padding: 40px; height: 100%;
            border: 1px solid rgba(255,255,255,0.8); 
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1); 
            position: relative; overflow: hidden; display: flex; flex-direction: column;
            z-index: 1;
        }
        .premium-service-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
            background: var(--gradient-secondary); transition: 0.4s; /* Red gradient */
        }
        /* Premium Animation on Hover */
        .premium-service-card:hover { 
            transform: translateY(-12px); 
            box-shadow: 0 25px 50px rgba(35, 31, 32, 0.12); /* Charcoal shadow */
        }
        .premium-service-card:hover::before { height: 6px; background: var(--primary-color); } /* Top line changes to Charcoal */
        
        .svc-icon-wrapper {
            width: 70px; height: 70px; background: rgba(235, 30, 36, 0.05); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 28px; color: var(--secondary-color); margin-bottom: 25px; transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }
        .premium-service-card:hover .svc-icon-wrapper { 
            background: var(--secondary-color); 
            color: #fff; 
            transform: rotateY(360deg) scale(1.1); 
        }
        
        .svc-title { font-size: 24px; font-weight: 800; color: var(--primary-color); margin-bottom: 15px; transition: 0.3s; }
        .premium-service-card:hover .svc-title { color: var(--secondary-color); }

        .svc-desc { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }
        
        .svc-list { margin-bottom: 30px; padding: 0; }
        .svc-list li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 14px; font-weight: 600; color: #444; }
        .svc-list li::before { content: '\f054'; font-family: "Font Awesome 5 Free"; font-weight: 900; position: absolute; left: 0; top: 4px; font-size: 10px; color: var(--secondary-color); }
        
        .svc-link { font-weight: 700; color: var(--primary-color); font-size: 14px; display: flex; align-items: center; gap: 8px; margin-top: auto; }
        .premium-service-card:hover .svc-link i { transform: translateX(8px); color: var(--secondary-color); transition: 0.3s; }

        /* Feature Highlight Section */
        .feature-highlight {
            background: var(--primary-color); color: #fff; padding: 80px 0; position: relative; overflow: hidden;
        }
        .feature-bg-pattern {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px; opacity: 0.3;
        }
        .feature-box {
            background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1); padding: 30px; border-radius: 15px;
            text-align: center; transition: 0.3s;
        }
        .feature-box:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
        .feature-box h4 { font-size: 40px; font-weight: 800; color: var(--secondary-color); margin-bottom: 10px; }
        .feature-box p { font-size: 16px; margin: 0; color: rgba(255,255,255,0.8); }

        /* Tech Marquee */
        .tech-marquee { padding: 50px 0; background: #fff; overflow: hidden; border-top: 1px solid #f1f1f1; }
        .tech-track { display: flex; gap: 50px; animation: scroll 30s linear infinite; width: max-content; }
        .tech-track img { height: 40px; filter: grayscale(100%); opacity: 0.6; transition: 0.3s; }
        .tech-track img:hover { filter: grayscale(0%); opacity: 1; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* =========================================
           5. PREMIUM CTA SECTION (Redesigned)
           ========================================= */
        .cta-section-premium {
            background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
            padding: 100px 0;
            position: relative;
            background-attachment: fixed;
            overflow: hidden;
            display: flex;
            align-items: center;
        }
        .cta-overlay {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(35, 31, 32, 0.95) 0%, rgba(15, 13, 14, 0.9) 100%); /* Charcoal */
            z-index: 1;
        }
        .cta-content-wrapper {
            position: relative; z-index: 2;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .cta-text h2 {
            font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 15px;
            text-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .cta-text p {
            font-size: 1.2rem; color: rgba(255,255,255,0.8); margin: 0; max-width: 500px;
        }
        .cta-btn-premium {
            background: var(--secondary-color);
            color: #fff;
            padding: 20px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 0 25px rgba(235, 30, 36, 0.4); /* Red shadow */
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            white-space: nowrap;
        }
        .cta-btn-premium:hover {
            transform: scale(1.05);
            background: transparent;
            border-color: var(--secondary-color);
            color: var(--secondary-color);
            box-shadow: 0 10px 40px rgba(235, 30, 36, 0.2);
        }
        .cta-decoration {
            position: absolute;
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(235, 30, 36, 0.2) 0%, transparent 70%); /* Red glow */
            top: -50px; right: -50px;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
            animation: pulseGlow 4s infinite alternate;
        }
        @keyframes pulseGlow { 0% { opacity: 0.5; transform: scale(1); } 100% { opacity: 0.8; transform: scale(1.2); } }

        @media (max-width: 991px) {
            .cta-content-wrapper { flex-direction: column; text-align: center; padding: 40px; }
            .cta-text h2 { font-size: 2rem; }
        }

        /* =========================================
           5. PREMIUM FOOTER
           ========================================= */
        .premium-footer { background-color: #231f20 !important; position: relative; color: #fff; padding-top: 120px; padding-bottom: 30px; overflow: visible; margin-top: 100px; z-index: 5; 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: absolute; top: -60px; left: 15px; right: 15px; margin: 0 auto; width: 100%; max-width: 1290px; background: linear-gradient(135deg, #eb1e24 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: 20px; 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.1), 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: 28px; font-weight: 800; margin: 0 0 10px; color: #fff !important; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
        .floating-card-text p { font-size: 16px; margin: 0; color: rgba(255,255,255,0.9) !important; }
        .floating-card-btn .btn-glow { background: #ffffff !important; color: #eb1e24 !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-flex; 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: 15px; font-size: 14px; color: rgba(255, 255, 255, 0.8) !important; line-height: 1.5; }
        .footer-contact-info i { color: #eb1e24 !important; margin-top: 4px; font-size: 18px; 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: #eb1e24 !important; }
        .footer-social-icons { display: flex; gap: 15px; margin-top: 25px; margin-bottom: 30px;}
        .footer-social-icons a { width: 40px; height: 40px; 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-badges img { opacity: 0.9; transition: 0.3s; }
        .footer-badges img:hover { opacity: 1; }
        .footer-widget-title { color: #ffffff !important; font-size: 18px; font-weight: 700; margin-bottom: 25px; position: relative; display: inline-block; text-transform: uppercase; letter-spacing: 1px; padding-bottom: 15px;}
        .footer-widget-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #eb1e24 !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: '\f105'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #eb1e24 !important; font-size: 12px; line-height: 1; opacity: 1; transition: all 0.3s ease; margin-right: 8px; }
        .footer-links a:hover { color: #eb1e24 !important; padding-left: 5px; }
        .footer-bottom-bar { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; 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; margin-left: 20px; }
        .footer-bottom-links a:hover { color: #eb1e24 !important; text-decoration: none !important; }

        @media (max-width: 991px) {
            .nav.navbar-menu, .mega_menu_section { display: none; }
            .mobile-toggle { display: block; }
            
            /* Responsive Hero - Matching About Page */
            .services-hero { 
                height: 450px; 
                padding-top: 40px; 
                align-items: center; 
            }
            .services-hero-text h1 { font-size: 2rem; }
            
            .cluster-label { display: none; }
            .footericons { display: block; }
            .footer-floating-card { flex-direction: column; text-align: center; gap: 20px; padding: 30px 20px; width: 100%; top: 0; margin-bottom: 40px; margin-top: -50px; position: relative; }
            .premium-footer { padding-top: 50px; }
            .footer-bottom-bar { flex-direction: column; text-align: center; }
            .footer-bottom-links a { margin: 0 10px; }
            
            /* Marquee Logic for Mobile */
            .top_header .desktop-bar { display: none; }
            .marquee-container { display: flex; }
        }

        /* 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;
        }            