        /* Modern Design Variable Resets */
        :root {
            --primary: #007bff;
            --primary-hover: #0056b3;
            --dark-blue: #003366;
            --text-main: #2d3748;
            --text-muted: #627180;
            --bg-light: #f8f9fa;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * { box-sizing: border-box; }

        body { 
            font-family: 'Inter', sans-serif; 
            margin: 0; 
            color: var(--text-main); 
            background-color: #ffffff; 
            padding-top: 90px;
            overflow-x: hidden;
        }

        h1, h2, h3 { color: var(--dark-blue); font-weight: 700; margin-top: 0; }
        p { color: var(--text-muted); line-height: 1.7; font-size: 15px; }
        
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        
        /* Persistent Header Styling */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 16px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition-smooth);
        }

        header .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--dark-blue);
            gap: 12px;
        }

        header .logo img { height: 42px; width: auto; object-fit: contain; animation: float 6s ease-in-out infinite;}

        nav { display: flex; gap: 28px; align-items: center; }
        nav a { text-decoration: none; color: #4a5568; font-weight: 500; font-size: 14px; transition: var(--transition-smooth); position: relative;}
        nav a::after {
            content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; 
            background-color: var(--primary); transition: var(--transition-smooth);
        }
        nav a:hover { color: var(--primary); }
        nav a:hover::after { width: 100%; }

        .discuss-btn { 
            background-color: var(--primary); color: white; padding: 10px 22px; 
            border-radius: 6px; font-size: 14px; text-decoration: none; font-weight: 600; 
            box-shadow: 0 4px 14px rgba(0, 123, 255, 0.25); transition: var(--transition-smooth); 
        }
        .discuss-btn:hover { 
            background-color: var(--primary-hover); 
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 123, 255, 0.35);
        }
        
        /* Hamburger Mobile Icon */
        .hamburger { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
        .hamburger span { width: 24px; height: 2px; background: var(--dark-blue); border-radius: 2px; transition: var(--transition-smooth); }

        /* Animation States */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }
        @keyframes pulseGlow {
            0% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
            70% { box-shadow: 0 0 0 12px rgba(220, 53, 69, 0); }
            100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
        }

        /* Hero Setup */
        .hero { 
            display: flex; align-items: center; padding: 100px 0 80px 0; gap: 60px; 
            animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-logo { flex: 1; text-align: center; animation: float 6s ease-in-out infinite; }
        .hero-logo img { max-width: 85%; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.06)); }
        .hero-content { flex: 1.3; }
        .hero-content h1 { font-size: 46px; margin-bottom: 24px; line-height: 1.25; letter-spacing: -0.5px; }
        .hero-content h1 span { color: var(--primary); }
        .hero-content p { font-size: 18px; margin-bottom: 36px; color: #4a5568; }
        
        .btn-red { 
            background-color: #dc3545; color: white; padding: 14px 32px; border-radius: 6px; 
            font-weight: 600; text-decoration: none; display: inline-block; 
            box-shadow: 0 4px 14px rgba(220, 53, 69, 0.3); animation: pulseGlow 2s infinite; transition: var(--transition-smooth); 
        }
        .btn-red:hover { background-color: #c82333; transform: translateY(-2px); }

        /* Core Services Card Grid Layout */
        .services { padding: 100px 0; background-color: #ffffff; }
        .services h2 { text-align: center; font-size: 36px; margin-bottom: 16px; }
        .services-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 60px; font-size: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
        .service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        
        .service-card { 
            padding: 40px 32px; border-radius: 14px; text-align: left; background: #ffffff;
            border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.01);
            transition: var(--transition-smooth); will-change: transform;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
        }
        .service-card h3 { margin-top: 20px; margin-bottom: 12px; font-size: 20px; }
        .service-card p { font-size: 14px; margin: 0; color: var(--text-muted); }
        
        /* Accent Micro Borders */
        .service-card-1:hover { border-color: #ffd700; }   /* Web Apps */
        .service-card-2:hover { border-color: #8ce33d; }   /* Automation */
        .service-card-3:hover { border-color: var(--primary); } /* Cloud */
        .service-card-4:hover { border-color: #00bfff; }   /* Mobile Apps */

        .icon-service { font-size: 36px; display: inline-block; }
        
        /* Tech Stack Box Engine */
        .tech-section { padding: 90px 0; background-color: var(--bg-light); border-top: 1px solid #edf2f7; border-bottom: 1px solid #edf2f7; }
        .tech-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 45px; }
        .tech-box { 
            background: #ffffff; border: 1px solid #e2e8f0; padding: 28px; border-radius: 12px; 
            box-shadow: 0 4px 6px rgba(0,0,0,0.01); transition: var(--transition-smooth);
        }
        .tech-box:hover { transform: translateY(-4px); box-shadow: 0 12px 20px rgba(0,0,0,0.04); border-color: #cbd5e1;}
        .tech-box h3 { font-size: 16px; margin-bottom: 16px; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; color: var(--dark-blue); }
        .tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .tech-tag { font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 6px; display: inline-block; }
        
        .tag-blue { background-color: rgba(0, 123, 255, 0.08); color: var(--primary); }
        .tag-green { background-color: rgba(140, 227, 61, 0.12); color: #4b8313; }
        .tag-yellow { background-color: rgba(247, 160, 29, 0.1); color: #b26400; }
        .tag-red { background-color: rgba(220, 53, 69, 0.08); color: #dc3545; }

        /* Unified Grid & Component Core System */
        .section-wrapper { padding: 100px 0; border-top: 1px solid #edf2f7; }
        .grid-2-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: center; }
        .grid-2-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
        
        .learn-more { font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; margin-top: 20px; transition: var(--transition-smooth); }
        .learn-more:hover { color: var(--primary-hover); }
        .learn-more span { transition: var(--transition-smooth); }
        .learn-more:hover span { transform: translateX(5px); }
        
        /* Functional Lists */
        .feature-list { list-style: none; padding: 0; margin: 0; }
        .feature-list li { margin-bottom: 24px; display: flex; align-items: flex-start; gap: 16px; }
        .feature-list li:last-child { margin-bottom: 0; }
        .feature-list strong { color: var(--dark-blue); font-size: 16px; display: block; margin-bottom: 6px; }
        .feature-list p { margin: 0; font-size: 14px; color: var(--text-muted); }
        
        .color-icon { width: 12px; height: 12px; display: inline-block; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
        .product-badge { background-color: rgba(0, 123, 255, 0.1); color: var(--primary); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 16px; border-radius: 50px; display: inline-block; margin-bottom: 20px; }
        
        /* Premium Corporate Footer Design Setup */
        footer { background-color: #0f172a; padding: 90px 0 40px 0; color: #94a3b8; border-top: 1px solid #1e293b; }
        footer h3 { color: #ffffff; }
        footer p { color: #94a3b8; }
        .footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
        .footer-icon { font-size: 16px; display: inline-block; margin-right: 12px; filter: grayscale(1) brightness(1.5); }
        .footer-contact-link { color: #cbd5e1; text-decoration: none; font-weight: 500; transition: var(--transition-smooth); }
        .footer-contact-link:hover { color: var(--primary); text-decoration: none; }
        
        /* Responsive CSS Engine Configuration */
        @media (max-width: 992px) {
            .hero-content h1 { font-size: 38px; }
            .service-grid { grid-template-columns: repeat(2, 1fr); }
            .tech-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            body { padding-top: 80px; }
            header { padding: 16px 24px; }
            .hero { flex-direction: column-reverse; text-align: center; padding: 50px 0; gap: 40px; }
            .hero-content h1 { font-size: 32px; }
            .service-grid, .tech-grid, .grid-2-col, .grid-2-col-equal, .footer-grid { grid-template-columns: 1fr; gap: 45px; }
            
            .hamburger { display: flex; }
            nav {
                display: none; flex-direction: column; background: #ffffff; position: absolute;
                top: 79px; left: 0; width: 100%; padding: 30px; border-bottom: 1px solid #e2e8f0;
                box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); gap: 20px; text-align: center;
            }
            nav.active { display: flex; animation: fadeInUp 0.4s ease; }
            nav a::after { display: none; }
        }
        /* Style for your counter widget box */
        .counter-box {
            display: inline-block;
            background: #ffffff;
            padding: 15px 25px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border: 1px solid #e1e8ed;
        }
        .counter-label {
            font-size: 12px;
            color: #657786;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }
        .counter-number {
            font-size: 28px;
            font-weight: bold;
            color: #1da1f2;
        }
        
        /* ==========================================================================
   1. FIXED FULL-SCREEN OVERLAY
   ========================================================================== */
.modal-overlay { 
  display: none; /* Switch to 'display: flex' via JavaScript when active */ 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh; 
  background: rgba(0, 0, 0, 0.7); /* Dim backdrop behind full-screen box if needed */
  z-index: 99999; /* Higher than any navigation bar or header element */
  justify-content: center; 
  align-items: center; 
  padding: 0; /* No outer gaps on any screen size */
  box-sizing: border-box;
} 

/* Dynamic trigger class */
.modal-overlay.is-active {
  display: flex;
}

/* ==========================================================================
   2. FULL-SCREEN WRAPPER
   ========================================================================== */
.modal-wrapper {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important; /* Forces layout past desktop width restrictions */
  margin-top: 0 !important;   /* Erases navigation bar spacing completely */
  box-sizing: border-box;
}

/* ==========================================================================
   3. FULL-SCREEN CONTENT CONTAINER
   ========================================================================== */
.modal-content { 
  background: #ffffff; 
  width: 100%;
  height: 100%; 
  max-height: 100vh !important; /* Utilises absolute full screen height */
  box-sizing: border-box; 
  overflow-y: auto; /* Vertically scrolls the internal content cleanly */
  -webkit-overflow-scrolling: touch; 
  
  /* Extra top padding so the fixed close button never hits your image */
  padding: 80px 24px 24px 24px; 
}

/* ==========================================================================
   4. FIXED TARGET CLOSE BUTTON (Locked on All Screen Sizes)
   ========================================================================== */
.close-btn { 
  position: fixed; /* Fixed viewport lock so it stays visible while scrolling */
  top: 20px; 
  right: 20px; 
  font-size: 26px; 
  font-weight: bold; 
  cursor: pointer; 
  
  /* High contrast colors visible on both dark/light panels */
  color: #333333; 
  background: #f5f5f5; 
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  
  border-radius: 50%; 
  width: 44px; /* Slightly larger hit area for unified mouse/touch access */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000; /* Stays at the absolute top layer level */
  transition: background 0.2s ease, transform 0.15s ease;
} 

.close-btn:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

/* ==========================================================================
   5. RESPONSIVE IMAGE CONTAINMENT
   ========================================================================== */
.flow-image { 
  width: 100%; 
  max-width: 1200px; /* Prevents the image from stretching into a gigantic blur on wide screens */
  height: auto; 
  border-radius: 8px; 
  display: block; 
  margin: 0 auto; /* Nicely centers the full-size image on large desktop displays */
} 

/* Modal overlay */
.modal-overlay-android {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

/* Modal content */
.modal-content-android {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  padding: 20px;
  position: relative;
}

/* Close button */
.close-btn-android {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

      /* Default Grid and Action Bar Styling for Desktop */
    .flowReferalContentGrid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 16px;
        margin: 12px 0;
        align-items: stretch;
        flex: 1;
    }

    .flowReferalActionBar {
        border-top: 1px solid #e2e8f0;
        padding-top: 12px;
        margin-top: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .flowReferalButtonGroup {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Mobile Breakpoint Optimization (Screens under 768px wide) */
    @media screen and (max-width: 768px) {
        .flowReferalContentGrid {
            grid-template-columns: 1fr !important;
            gap: 12px !important;
        }

        .flowReferalActionBar {
            flex-direction: column !important;
            gap: 10px !important;
            text-align: center;
        }

        .flowReferalButtonGroup {
            width: 100% !important;
            justify-content: space-between !important;
        }

        .flowReferalButtonGroup a {
            flex: 1;
            text-align: center;
        }

        .flowReferalH1 {
            font-size: 1.15rem !important;
        }

        .flowReferalVideoFrame {
            min-height: 180px !important;
        }
    }


  /* Modal Scoped Styles */
  #career.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
  }
  .flow-partner-modal {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #131b2e, #0b0f19);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid #1f293d;
    color: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
  }
  .flow-partner-modal::-webkit-scrollbar {
    width: 6px;
  }
  .flow-partner-modal::-webkit-scrollbar-thumb {
    background: #1f293d;
    border-radius: 4px;
  }
  .flow-close-btn {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    font-weight: 300;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
  }
  .flow-close-btn:hover {
    color: #ffffff;
  }
  .flow-company {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .flow-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  .flow-header {
    text-align: center;
    margin-bottom: 20px;
  }
  .flow-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #ffffff;
  }
  .flow-subtitle {
    font-size: 16px;
    color: #facc15;
    font-weight: 600;
  }
  .flow-banner {
    background: #1e293b;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    font-size: 13.5px;
    color: #cbd5e1;
    margin-bottom: 20px;
    border-left: 4px solid #38bdf8;
  }
  .flow-section-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
  }
  .flow-tile {
    background: #162032;
    border: 1px solid #23314d;
    border-radius: 12px;
    padding: 14px;
  }
  .flow-tile-title {
    font-size: 12px;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .flow-tile-row {
    font-size: 12.5px;
    color: #94a3b8;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
  }
  .flow-tile-row span {
    color: #f8fafc;
    font-weight: 600;
  }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
    margin-bottom: 20px;
  }
  .flow-step {
    background: #162032;
    border: 1px solid #23314d;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    color: #cbd5e1;
  }
  .flow-step-num {
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 2px;
  }
  .flow-audience {
    background: #162032;
    border: 1px solid #23314d;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 20px;
  }
  .flow-audience ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 6px 12px;
    list-style: none;
    font-size: 12.5px;
    color: #cbd5e1;
    padding: 0;
    margin: 0;
  }
  .flow-audience li::before {
    content: "✔ ";
    color: #4ade80;
    margin-right: 4px;
  }
  .flow-cta-box {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border: 1.5px solid #4ade80;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
  }
  .flow-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
  }
  .flow-close-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    background-color: #dc2626;
    color: #ffffff;
    padding: 0 18px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: background-color 0.2s ease;
  }
  .flow-close-link:hover {
    background-color: #b91c1c;
  }
  .flow-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    background: #4ade80;
    color: #0b0f19;
    font-weight: 800;
    font-size: 13px;
    padding: 0 24px;
    border-radius: 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
  }
  .flow-cta-btn:hover {
    opacity: 0.9;
  }
