
        /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        :root {
            --brand-deep-blue: #001a4d;
            --brand-primary: #1e40af;
            --brand-accent: #3b82f6;
            --brand-light: #dbeafe;
            --brand-hover: #2563eb;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border-light: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius-lg: 20px;
            --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Verdana', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
        body {
            font-family: var(--font-family);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
        @media (min-width: 768px) { .container { padding: 0 30px; } }
        
        h1, h2, h3 { font-weight: 700; line-height: 1.2; }
        h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
        h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
        a { text-decoration: none; -webkit-tap-highlight-color: transparent; }
        img { max-width: 100%; height: auto; display: block; }

        .header-spacer { height: calc(38px + 85px); width:100%; }
        .breadcrumb-wrapper { background: var(--bg-soft); padding: 14px 0; border-bottom:1px solid var(--border-light); }
        .breadcrumb { display:flex; flex-wrap:wrap; gap:8px; list-style:none; }
        .breadcrumb-item a { color: var(--brand-primary); font-weight:500; }
        .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-item+ .breadcrumb-item::before { content:"/"; padding-right:8px; color: var(--text-muted); }
        .section-header { max-width: 900px; margin: 0 auto 30px; text-align: center; }
        .section-header .lead { font-size: 1.1rem; color: var(--text-muted); margin-top: 15px; }

        /*========== HERO SECTION - 100% COVER ==========*/
        .hero-section-inner {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #001a4d, #1e3a8a);
            overflow: hidden;
            padding: 100px 0;
            margin-top: 0;
        }
        .hero-section-inner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(59,130,246,0.2), transparent 70%);
            z-index: 1;
        }
        .dots-bg {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.05) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.4;
            z-index: 1;
        }
        .hero-inner {
            max-width: 1000px;
            color: white;
            position: relative;
            z-index: 2;
            margin: 0 auto;
            text-align: center;
        }
        .hero-inner h1 {
            color: white;
            margin-bottom: 25px;
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 1.2;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
        .hero-inner p {
            font-size: 1.25rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 35px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        .hero-inner ul {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px 20px;
            list-style: none;
            margin: 30px 0 0;
        }
        .hero-inner li span {
            display: inline-block;
            background: rgba(255,255,255,0.1);
            padding: 10px 24px;
            border-radius: 50px;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.2);
            font-weight: 500;
            transition: all 0.3s ease;
            color: white;
        }
        .hero-inner li span:hover {
            background: rgba(212,175,55,0.2);
            border-color: #d4af37;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            .hero-section-inner { min-height: 100vh; padding: 80px 0; }
            .hero-inner p { font-size: 1.1rem; }
            .hero-inner li span { padding: 8px 18px; font-size: 0.95rem; }
        }
        @media (max-width: 480px) {
            .hero-section-inner { padding: 60px 0; }
            .hero-inner p { font-size: 1rem; }
            .hero-inner ul { flex-direction: column; gap: 10px; }
            .hero-inner li span { width: 100%; }
        }

       /*========== AWARDS SECTION - MERGED BOX ==========*/
.awards-section {
    padding: 60px 0;
    background: white;
}

.awards-merged-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .awards-merged-box {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }
}

.awards-list-side {
    padding: 45px 40px;
    background: white;
}

@media (max-width: 768px) {
    .awards-list-side {
        padding: 30px 25px;
    }
}

.awards-list-side h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--brand-deep-blue);
    position: relative;
    padding-bottom: 12px;
}

.awards-list-side h2 span {
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    .awards-list-side h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

.awards-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .awards-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.award-item {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    padding: 25px;
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30,64,175,0.3);
}

@media (max-width: 768px) {
    .award-item {
        min-height: auto;
        padding: 18px;
    }
}

.award-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
    font-weight: 700;
    color: white;
}

.award-item p {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.awards-image-side {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

@media (max-width: 768px) {
    .awards-image-side {
        min-height: 350px;
        max-height: 400px;
    }
}

.awards-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        /*========== WHY CHOOSE SECTION - MERGED BOX ==========*/
.why-choose-section {
    padding: 60px 0;
    background: var(--bg-soft);
}

.why-choose-merged-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
    .why-choose-merged-box {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }
}

.why-choose-list-side {
    padding: 45px 40px;
    background: white;
}

@media (max-width: 768px) {
    .why-choose-list-side {
        padding: 30px 25px;
    }
}

.why-choose-list-side h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--brand-deep-blue);
    position: relative;
    padding-bottom: 12px;
}

.why-choose-list-side h2 span {
    color: var(--brand-primary);
}

@media (max-width: 768px) {
    .why-choose-list-side h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.why-choose-item {
    background: var(--bg-soft);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-light);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30,64,175,0.1);
    border-color: var(--brand-accent);
    background: white;
}

@media (max-width: 768px) {
    .why-choose-item {
        min-height: auto;
        padding: 18px;
    }
}

.why-choose-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--brand-deep-blue);
    font-weight: 700;
}

.why-choose-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.why-choose-image-side {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

@media (max-width: 768px) {
    .why-choose-image-side {
        min-height: 350px;
        max-height: 400px;
        order: -1; /* Image upar aayegi mobile mein */
    }
}

.why-choose-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        /*========== STATS SECTION ==========*/
        .stats-section { padding: 80px 0; background: white; }
        .stats-section .section-title { text-align: center; font-size: clamp(2rem,4vw,2.8rem); color: var(--brand-deep-blue); margin-bottom: 30px; }
        .stats-section .section-desc { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 900px; margin: 0 auto 50px; }
        .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
        @media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
        @media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
        .stat-card {
            text-align: center; padding: 30px; background: var(--bg-soft); border-radius: 20px;
            border: 1px solid var(--border-light); transition: 0.3s;
        }
        .stat-card:hover { transform: translateY(-10px); border-color: var(--brand-accent); box-shadow: var(--shadow-lg); }
        .stat-icon-box {
            width: 70px; height: 70px; background: var(--brand-light); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: 0.3s;
        }
        .stat-card:hover .stat-icon-box { background: var(--brand-primary); }
        .stat-icon-box svg { width: 30px; height: 30px; fill: var(--brand-primary); transition: 0.3s; }
        .stat-card:hover .stat-icon-box svg { fill: white; }
        .stat-card h3 {
            font-size: 2.5rem; font-weight: 800; color: var(--brand-deep-blue); margin-bottom: 10px;
            background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .stat-card p { color: var(--text-muted); font-size: 1rem; font-weight: 500; }

        /*========== OFFER GLOBALLY SECTION ==========*/
        .offer-globally { padding: 80px 0; background: var(--bg-soft); }
        .offer-globally__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
        @media (max-width: 1024px) { .offer-globally__grid { grid-template-columns: repeat(2,1fr); } }
        @media (max-width: 640px) { .offer-globally__grid { grid-template-columns: 1fr; } }
        .offer-globally__card {
            background: white; border-radius: 20px; padding: 30px; border: 1px solid var(--border-light);
            transition: 0.3s; height: 100%;
        }
        .offer-globally__card:hover { transform: translateY(-10px); border-color: var(--brand-accent); box-shadow: var(--shadow-lg); }
        .offer-globally__icon {
            width: 60px; height: 60px; background: var(--brand-light); border-radius: 16px;
            display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: 0.3s;
        }
        .offer-globally__card:hover .offer-globally__icon { background: var(--brand-primary); }
        .offer-globally__icon svg { width: 30px; height: 30px; fill: var(--brand-primary); transition: 0.3s; }
        .offer-globally__card:hover .offer-globally__icon svg { fill: white; }
        .offer-globally__card h3 { font-size: 1.3rem; color: var(--brand-deep-blue); margin-bottom: 20px; }
        .offer-globally__card ul { list-style: none; }
        .offer-globally__card ul li {
            color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 10px;
            padding-left: 20px; position: relative;
        }
        .offer-globally__card ul li::before { content: '•'; color: var(--brand-primary); font-weight: bold; position: absolute; left: 0; }

        /*========== PROCESS SECTION ==========*/
        .process-section { padding: 80px 0; background: white; }
        .process-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .process-section h2 { text-align: center; font-size: clamp(2rem,4vw,2.8rem); color: var(--brand-deep-blue); margin-bottom: 50px; }
        .process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 25px; }
        @media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
        @media (max-width: 640px) { .process-grid { grid-template-columns: 1fr; } }
        .process-card {
            background: var(--bg-soft); border-radius: 20px; padding: 30px; border: 1px solid var(--border-light);
            transition: 0.3s; height: 100%;
        }
        .process-card:hover { transform: translateY(-10px); border-color: var(--brand-accent); box-shadow: var(--shadow-lg); background: white; }
        .process-icon {
            width: 60px; height: 60px; background: var(--brand-light); border-radius: 16px;
            display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: 0.3s;
        }
        .process-card:hover .process-icon { background: var(--brand-primary); }
        .process-icon svg { width: 30px; height: 30px; fill: var(--brand-primary); transition: 0.3s; }
        .process-card:hover .process-icon svg { fill: white; }
        .process-card h3 { font-size: 1.2rem; color: var(--brand-deep-blue); margin-bottom: 10px; }
        .process-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

        /*========== TOOLS STACK SECTION ==========*/
        .tools-stack-section { padding: 80px 0; background: var(--bg-soft); }
        .tools-stack-section h2 { text-align: center; font-size: clamp(2rem,4vw,2.8rem); color: var(--brand-deep-blue); margin-bottom: 20px; }
        .tools-stack-section > .container > p { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 800px; margin: 0 auto 40px; }
        .tools-stack-tabs { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
        .tab-btn {
            padding: 12px 30px; background: white; border: 1px solid var(--border-light); border-radius: 50px;
            font-weight: 600; color: var(--text-muted); cursor: pointer; transition: 0.3s; font-size: 1rem;
        }
        .tab-btn:hover { background: var(--brand-light); border-color: var(--brand-accent); }
        .tab-btn.active { background: var(--brand-primary); color: white; border-color: var(--brand-primary); }
        .tab-content { display: none; }
        .tab-content.active { display: block; }
        .tools-stack-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
        @media (max-width: 1024px) { .tools-stack-grid { grid-template-columns: repeat(3,1fr); } }
        @media (max-width: 768px) { .tools-stack-grid { grid-template-columns: repeat(2,1fr); } }
        @media (max-width: 480px) { .tools-stack-grid { grid-template-columns: 1fr; } }
        .tool-stack-box {
            background: white; border-radius: 12px; padding: 20px; text-align: center;
            border: 1px solid var(--border-light); transition: 0.3s; font-weight: 600; color: var(--text-dark);
        }
        .tool-stack-box:hover { transform: translateY(-5px); border-color: var(--brand-accent); background: var(--brand-light); }

        /*========== DIGITAL PRODUCT SECTION ==========*/
        .digital-product { padding: 80px 0; background: white; }
        .digital-product h2 { text-align: center; font-size: clamp(2rem,4vw,2.8rem); color: var(--brand-deep-blue); margin-bottom: 30px; }
        .digital-product h2 span { color: var(--brand-primary); }
        .digital-product p {
            color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; max-width: 900px;
            margin-left: auto; margin-right: auto; margin-bottom: 25px;
        }
        @media (max-width: 768px) { .digital-product p { font-size: 1rem; line-height: 1.7; } }

        /*========== FAQ SECTION - REFERENCE PAGE STYLE ==========*/
        .faq-section {
            padding: 80px 0;
            background: var(--bg-soft);
        }
        .faq-section h2 {
            text-align: center;
            font-size: clamp(2rem, 4vw, 2.8rem);
            color: var(--brand-deep-blue);
            margin-bottom: 50px;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .faq-item {
            background: white;
            border-radius: 20px;
            padding: 25px;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            height: 100%;
        }
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--brand-accent);
        }
        .faq-item h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--brand-deep-blue);
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
        }
        .faq-item h3 i {
            color: var(--brand-accent);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .faq-item p {
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.95rem;
            margin-left: 30px;
        }

        /*========== TESTIMONIALS SECTION ==========*/
        .testimonials { padding: 80px 0; background: white; }
        .testimonials h2 { text-align: center; font-size: clamp(2rem,4vw,2.8rem); color: var(--brand-deep-blue); margin-bottom: 50px; }
        .testimonials h2 span { color: var(--brand-primary); }
        .testimonial-card-main { display: grid; grid-template-columns: repeat(4,1fr); gap: 25px; }
        @media (max-width: 1024px) { .testimonial-card-main { grid-template-columns: repeat(2,1fr); } }
        @media (max-width: 640px) { .testimonial-card-main { grid-template-columns: 1fr; } }
        .testimonial-card {
            background: var(--bg-soft); border-radius: 20px; padding: 25px; border: 1px solid var(--border-light);
            transition: 0.3s; height: 100%;
        }
        .testimonial-card:hover { transform: translateY(-10px); border-color: var(--brand-accent); box-shadow: var(--shadow-lg); }
        .bubble h3 { font-size: 1.1rem; color: var(--brand-deep-blue); margin-bottom: 5px; }
        .bubble span { color: var(--text-muted); font-size: 0.85rem; display: block; margin-bottom: 15px; }
        .bubble p { color: var(--text-dark); font-size: 0.95rem; line-height: 1.6; margin-bottom: 15px; font-style: italic; }
        .stars { color: #fbbf24; font-size: 1rem; }

        /*========== CONTACT SECTION ==========*/
        .contact-section { padding: 60px 0; background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); }
        .contact-merged-box {
            display: grid; grid-template-columns: 1fr 1fr; background: white; border-radius: 30px;
            overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); border: 1px solid var(--border-light);
        }
        .contact-image-side { position: relative; overflow: hidden; height: 100%; min-height: 600px; }
        .contact-image-side img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .contact-form-side { display: flex; align-items: center; background: white; padding: 50px 45px; }
        .contact-form-card { width: 100%; }
        .contact-form-card h2 { font-size: 2rem; margin-bottom: 10px; color: var(--brand-deep-blue); }
        .contact-form-card .sub { color: var(--text-muted); margin-bottom: 25px; font-size: 1rem; }
        .form-group { margin-bottom: 18px; }
        .form-group input, .form-group textarea {
            width: 100%; padding: 16px 20px; border: 2px solid var(--border-light); border-radius: 12px;
            font-size: 1rem; background: white; font-family: inherit;
        }
        .form-group input:focus, .form-group textarea:focus {
            outline: none; border-color: var(--brand-accent); box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
        }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .btn-submit {
            width: 100%; background: linear-gradient(135deg, #2563eb, #1e40af); color: white; padding: 16px 20px;
            border: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; cursor: pointer;
            box-shadow: 0 8px 20px rgba(30,64,175,0.3); display: inline-flex; align-items: center;
            justify-content: center; gap: 12px; margin-top: 5px; transition: 0.3s;
        }
        .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(30,64,175,0.4); }
        .btn-submit i { font-size: 1.2rem; }
        .privacy-note {
            margin-top: 20px; color: var(--text-muted); font-size: 0.85rem; text-align: center;
            display: flex; align-items: center; justify-content: center; gap: 6px;
        }
        .privacy-note i { color: var(--brand-accent); }
        @media (max-width: 768px) {
            .contact-merged-box { grid-template-columns: 1fr; }
            .contact-image-side { min-height: 350px; }
            .contact-form-side { padding: 35px 30px; }
        }

         /* CTA SECTION */
    .cta-section { background: #f8fafc; padding: 10px 0 30px; }
    .gradient-cta { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); border-radius: 32px; padding: 50px; display: flex; flex-direction: column; gap: 35px; align-items: flex-start; color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.1); }
    .cta-content { max-width: 900px; }
    .cta-content h2 { color: white; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: 12px; font-weight: 800; }
    .cta-content p { font-size: clamp(1rem,3vw,1.35rem); line-height: 1.4; color: rgba(255,255,255,0.95); font-weight: 500; }
    .cta-buttons { display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; width: 100%; }
    .cta-btn { display: flex; align-items: center; justify-content: center; gap: 12px; background: white; color: #000; padding: 20px 50px; border-radius: 60px; text-decoration: none; font-weight: 700; font-size: 1.25rem; min-width: 200px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: none; cursor: pointer; }
    .cta-btn.cta-whatsapp { background: #25D366; color: white; }
    .cta-btn i { font-size: 1.3rem; display: inline-block; }
    @media (max-width:768px) { .gradient-cta { padding: 30px 20px; align-items: center; text-align: center; } .cta-buttons { flex-direction: column; } .cta-btn { width: 100%; padding: 16px 24px; font-size: 1.1rem; } }

        /* Section spacing */
        section { margin: 0; padding: 60px 0; }
        .hero-section-inner { padding: 0; min-height: 100vh; }
    