
        /* Global Styles & Box Sizing */
        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        :root { --primary-teal: #1a8b9d; --secondary-grey: #4a5056; --light-bg: #f8f9fa; --white: #ffffff; --transition: 0.3s ease; }
        body { font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; margin: 0; padding: 0; color: #333; line-height: 1.6; overflow-x: hidden; background-color: var(--light-bg); }
        a { text-decoration: none; color: var(--primary-teal); transition: color var(--transition); }
        h1, h2, h3, h4 { color: var(--secondary-grey); margin-top: 0; }
        .section-padding { padding: 5rem 2rem; }
        .container { max-width: 1200px; margin: 0 auto; }
        .text-center { text-align: center; }

        /* Buttons */
        .btn { background: var(--primary-teal); color: var(--white); padding: 1rem 2rem; border-radius: 6px; font-weight: bold; display: inline-block; transition: all var(--transition); border: none; cursor: pointer; text-align: center; font-size: 1.1rem; line-height: 1.4; }
        .btn:hover { background: #136a78; color: var(--white); transform: translateY(-2px); box-shadow: 0 4px 10px rgba(26, 139, 157, 0.3); }
        .btn-outline { background: transparent; border: 2px solid var(--primary-teal); color: var(--primary-teal); }
        .btn-outline:hover { background: var(--primary-teal); color: var(--white); }

        /* Header & Navigation */
        
        
        
        
        .logo img:hover { transform: scale(1.02); }
        
        .logo-text span { color: var(--primary-teal); }

        
        
        

        

        /* Page Header */
        .page-header { background: linear-gradient(135deg, rgba(26, 139, 157, 0.95), rgba(30, 41, 59, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80') center/cover fixed; color: var(--white); text-align: center; padding: 7rem 2rem 5rem; position: relative; overflow: hidden; }
        .page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent); animation: shimmerHeader 8s infinite linear; }
        @keyframes shimmerHeader { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
        .page-header h1 { font-size: 3.8rem; color: var(--white); margin-bottom: 1rem; text-shadow: 0 4px 15px rgba(0,0,0,0.4); font-weight: 800; letter-spacing: -1px; }
        .page-header p { font-size: 1.35rem; max-width: 800px; margin: 0 auto; color: rgba(255,255,255,0.9); font-weight: 300; }

        /* Tech Stack Marquee */
        .tech-stack { background: var(--white); padding: 2rem 0; overflow: hidden; border-bottom: 1px solid #eee; }
        .tech-title { text-align: center; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 1.5rem; }
        .marquee { display: flex; width: max-content; animation: scroll 20s linear infinite; gap: 4rem; padding: 0 2rem; }
        .marquee span { font-size: 1.5rem; font-weight: bold; color: #a0aab2; display: flex; align-items: center; gap: 10px; }
        @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* Services Detailed Grid */
        .detailed-services { padding: 5rem 2rem; background: var(--light-bg); }
        .service-block { background: var(--white); border-radius: 16px; padding: 3.5rem; margin-bottom: 3rem; box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02); border-left: 6px solid var(--primary-teal); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); position: relative; }
        .service-block:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
        .service-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
        .service-header i { font-size: 2.8rem; color: var(--primary-teal); }
        .service-header h2 { margin: 0; font-size: 2.2rem; font-weight: 700; color: #1e293b; letter-spacing: -0.5px; }
        .service-desc { font-size: 1.15rem; color: #475569; margin-bottom: 2.5rem; line-height: 1.7; }
        
        .service-features { background: #f8fafc; padding: 2rem 2.5rem; border-radius: 12px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-bottom: 2.5rem; border: 1px solid #e2e8f0; }
        .service-features li { list-style: none; display: flex; align-items: flex-start; gap: 12px; font-size: 1.05rem; color: #334155; margin-bottom: 0.5rem; font-weight: 500; }
        .service-features i { color: #10b981; margin-top: 4px; flex-shrink: 0; font-size: 1.1rem; }
        .service-action { text-align: left; }
        .service-action .btn { border-radius: 8px; font-weight: 600; padding: 1.2rem 2.5rem; }
        .btn-outline { background: transparent; border: 2px solid var(--primary-teal); color: var(--primary-teal); transition: all 0.3s ease; }
        .btn-outline:hover { background: var(--primary-teal); color: var(--white); box-shadow: 0 8px 20px rgba(26, 139, 157, 0.3); transform: translateY(-2px); }

        /* How We Engage / Process */
        .process-section { background: var(--white); padding: 7rem 2rem; position: relative; }
        .process-section h2 { font-size: 2.8rem; color: #1e293b; font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
        .process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 4rem; position: relative; }
        .process-card { background: #f8fafc; padding: 3rem 2.5rem; border-radius: 16px; text-align: left; border-top: 5px solid var(--primary-teal); box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.4s ease, box-shadow 0.4s ease; }
        .process-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
        .process-step { display: inline-block; background: linear-gradient(135deg, var(--primary-teal), #136a78); color: var(--white); padding: 0.4rem 1.2rem; border-radius: 20px; font-size: 0.9rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: 0.5px; text-transform: uppercase; }
        .process-card h4 { font-size: 1.5rem; margin-bottom: 1rem; color: #0f172a; font-weight: 700; }
        .process-card p { color: #64748b; font-size: 1.05rem; line-height: 1.7; }

        /* Expected Outcomes */
        .outcomes-section { background: linear-gradient(135deg, #0f172a, #1e293b); color: var(--white); padding: 7rem 2rem; position: relative; overflow: hidden; }
        .outcomes-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(90deg, var(--primary-teal), #34d399); }
        .outcomes-section h2 { color: var(--white); font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; margin-bottom: 1rem; }
        .outcomes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.5rem; margin-top: 4rem; }
        .outcome-card { background: rgba(255,255,255,0.03); padding: 2.5rem; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); text-align: center; backdrop-filter: blur(10px); transition: all 0.4s ease; }
        .outcome-card:hover { transform: translateY(-10px); border-color: rgba(26, 139, 157, 0.5); background: rgba(255,255,255,0.05); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
        .outcome-card i { font-size: 2.5rem; color: #38bdf8; margin-bottom: 1.5rem; transition: transform 0.4s ease; }
        .outcome-card:hover i { transform: scale(1.1) translateY(-5px); color: #7dd3fc; }
        .outcome-card h4 { color: var(--white); font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; }
        .outcome-card p { color: #94a3b8 !important; font-size: 1rem !important; line-height: 1.6; }

        /* Accordion FAQ */
        .faq-section { background: #f8fafc; padding: 7rem 2rem; }
        .faq-container { max-width: 800px; margin: 0 auto; text-align: left; }
        .faq-section h2 { font-size: 2.8rem; font-weight: 800; letter-spacing: -1px; color: #1e293b; }
        details { background: var(--white); border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 1rem; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: box-shadow 0.3s ease; }
        details:hover { box-shadow: 0 10px 15px rgba(0,0,0,0.05); }
        summary { padding: 1.5rem; font-weight: 600; cursor: pointer; color: #334155; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; transition: color 0.3s ease; }
        summary:hover { color: var(--primary-teal); }
        summary::-webkit-details-marker { display: none; }
        summary::after { content: '\f078'; font-family: 'FontAwesome'; color: #cbd5e1; transition: transform 0.3s, color 0.3s; font-size: 1rem; }
        details[open] summary::after { transform: rotate(180deg); color: var(--primary-teal); }
        .faq-content { padding: 0 1.5rem 1.5rem; color: #64748b; background: var(--white); font-size: 1.05rem; line-height: 1.7; animation: slideDown 0.3s ease-out; }
        @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

        /* Bridge to Models / CTA */
        .cta-bridge { background: linear-gradient(135deg, #1a8b9d, #136a78); color: var(--white); text-align: center; padding: 7rem 2rem; margin-top: 0; position: relative; overflow: hidden; }
        .cta-bridge::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); }
        .cta-bridge h2 { color: var(--white); font-size: 3rem; margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -1px; position: relative; z-index: 1; }
        .cta-bridge p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 3rem; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
        .cta-bridge .btn { border-radius: 8px; font-weight: 700; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; z-index: 1; display: inline-block; }
        .cta-bridge .btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

        /* Floating WhatsApp */
        .whatsapp-float { position: fixed; bottom: 30px; right: 30px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.2); z-index: 1000; transition: transform var(--transition); }
        .whatsapp-float:hover { transform: scale(1.1); color: white; }

                /* Premium Footer */
        
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 4rem; }
        
        .footer-brand h4 { color: var(--white); font-size: 1.8rem; margin-bottom: 1rem; margin-top: 0; display: flex; align-items: center; gap: 10px; }
        .footer-brand h4 span { color: var(--primary-teal); }
        .footer-brand p { color: #9ca3af; line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
        .social-links { display: flex; gap: 1rem; }
        .social-links a { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.05); color: #fff; transition: all 0.3s ease; }
        .social-links a:hover { background: var(--primary-teal); transform: translateY(-3px); box-shadow: 0 5px 15px rgba(26, 139, 157, 0.4); }

        
        
        
        
        
        
        
        
        
        

        .footer-contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 1.2rem; color: #9ca3af; font-size: 0.95rem; line-height: 1.6; }
        .footer-contact-item i { color: var(--primary-teal); font-size: 1.2rem; margin-top: 3px; }
        .footer-contact-item a { color: #9ca3af; transition: color 0.3s; }
        .footer-contact-item a:hover { color: var(--primary-teal); }

        .footer-badge { background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 1rem; transition: transform 0.3s; }
        .footer-badge:hover { transform: translateY(-2px); border-color: rgba(26, 139, 157, 0.5); }
        .footer-badge i { color: var(--primary-teal); margin-right: 10px; }

        
        
        

        /* Mobile Responsiveness */
        
        @media (max-width: 1200px) {
            
            
            
            
            nav ul.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); opacity: 1; visibility: visible; }
            
            
        }
        @media (max-width: 1024px) {
            .page-header h1 { font-size: 3rem; }
            .section-padding { padding: 4rem 2rem; }
        }

        @media (max-width: 768px) {
            
            
            
            
            .service-features { grid-template-columns: 1fr; gap: 0.8rem; }
            .service-features li { font-size: 1rem; }
            .service-action { text-align: center; }
            .service-action .btn { width: 100%; }

            .download-trigger .btn { width: auto; max-width: 100%; white-space: normal; padding: 1rem 1.5rem; }

            .cta-bridge h2 { font-size: 2.2rem; }
            .whatsapp-float { width: 50px; height: 50px; font-size: 1.8rem; bottom: 20px; right: 20px; }
        }

        @media (max-width: 480px) {
            .page-header h1 { font-size: 2.2rem; }
            
            
            .service-block { padding: 1.5rem; }
            .service-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
        }
    
        /* Pure CSS Hamburger Menu */
        
        
        
        
        
        


/* RESTORED HAMBURGER FOR TABLET/MOBILE ONLY */


@media (max-width: 1200px) {
    
    
    
    
    
    
    
    
    

    
    nav ul.active { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); 
        opacity: 1; 
        visibility: visible; 
    }
    
    
}

 (ENABLED ON ALL SCREENS)
   ==================================================== */


/* The hamburger button must ALWAYS be visible */








/* The nav list must ALWAYS be a hidden dropdown */

nav ul.active { 
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important; 
    opacity: 1 !important; 
    visibility: visible !important; 
}



/* Active State Dot Styling */




   ==================================================== */

/* --- Desktop Nav Layout --- */









/* Active Page Middle Dot */



/* Hide Hamburger on Desktop */


/* --- Footer Standard --- */










/* ====================================================
   TABLET / MOBILE RESPONSIVENESS (<= 1200px)
   ==================================================== */
@media (max-width: 1200px) {
    
    
    
    
    
    
    

    
    nav ul.active { 
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%) !important; 
        opacity: 1 !important; 
        visibility: visible !important; 
    }
    
    
    
    /* Center the dot in mobile view */
    
}
