-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
256 lines (229 loc) · 11.2 KB
/
services.html
File metadata and controls
256 lines (229 loc) · 11.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<title>FutureStack Intelligence — Services</title>
<link rel="stylesheet" href="shared.css">
<style>
.page-hero {
position: relative;
z-index: 1;
background: linear-gradient(135deg, #04061a 0%, #060a1e 100%);
padding: 64px 40px 48px;
border-bottom: 1px solid var(--glass-border);
text-align: center;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 20px;
margin-top: 0;
}
.service-card {
background: var(--glass);
border: 1px solid var(--glass-border);
border-radius: 6px;
padding: 28px;
cursor: pointer;
transition: all 0.3s;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
}
.service-card::before {
content:'';
position:absolute;
top:0;left:0;right:0;
height:2px;
background:linear-gradient(90deg,var(--cyan),var(--purple));
transform:scaleX(0);
transition:transform 0.3s;
}
.service-card:hover {
transform: translateY(-4px);
border-color: rgba(0,234,255,0.3);
box-shadow: 0 16px 48px rgba(0,0,0,0.5);
background: rgba(0,234,255,0.07);
}
.service-card:hover::before { transform: scaleX(1); }
.s-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: var(--font-head); font-size: 13px; color: white; margin-bottom: 10px; letter-spacing: 1px; }
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; flex: 1; margin-bottom: 20px; }
.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.btn-order {
display: inline-flex;
align-items: center;
gap: 6px;
background: linear-gradient(135deg, rgba(0,234,255,0.12), rgba(26,109,255,0.12));
border: 1px solid rgba(0,234,255,0.4);
color: var(--cyan);
font-family: var(--font-head);
font-size: 9px;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 10px 16px;
border-radius: 3px;
font-weight: 700;
transition: all 0.3s;
}
.btn-order:hover, .service-card:hover .btn-order {
background: linear-gradient(135deg, rgba(0,234,255,0.22), rgba(26,109,255,0.22));
box-shadow: 0 0 16px rgba(0,234,255,0.3);
}
.arrow-icon { transition: transform 0.3s; display: inline-block; }
.service-card:hover .arrow-icon { transform: translateX(4px); }
@media (max-width: 768px) {
.page-hero { padding: 48px 20px 36px; }
.services-grid { grid-template-columns: 1fr; gap: 14px; }
.service-card { padding: 22px; }
}
@media (max-width: 480px) {
.services-grid { grid-template-columns: 1fr; }
}
</style>
</head>
<body>
<nav class="navbar">
<a href="index.html" class="nav-logo">
<img src="logo.png" alt="FutureStack">
<div class="nav-brand-text">FutureStack<span>Intelligence</span></div>
</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="services.html" class="active">Services</a></li>
<li><a href="ebooks.html">Ebooks</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="contact.html" class="nav-cta active">Work With Us</a></li>
</ul>
<div class="hamburger" id="ham"><span></span><span></span><span></span></div>
</nav>
<div class="mobile-menu" id="mobileMenu">
<a href="index.html">Home</a>
<a href="services.html" class="active">Services</a>
<a href="ebooks.html">Ebooks</a>
<a href="courses.html">Courses</a>
<a href="contact.html" class="m-cta">Work With Us</a>
</div>
<div class="page-wrap">
<div class="page-hero">
<div class="section-tag" style="justify-content:center;">What We Do</div>
<h1 class="section-title">Our <span>Services</span></h1>
<p style="color:var(--muted);font-size:15px;max-width:500px;margin:0 auto;line-height:1.8;font-weight:300;">Click any available service to place your order directly. We respond within 24 hours.</p>
</div>
<div class="page-wrap">
<div class="container">
<div class="services-grid">
<div class="service-card" onclick="openModal('AI Workflow Automation','Build end-to-end automated workflows using Make.com and n8n that eliminate repetitive manual tasks and run 24/7 without human input.')">
<span class="s-icon">⚡</span>
<h3>AI Workflow Automation</h3>
<p>End-to-end automated workflows using Make.com and n8n that eliminate repetitive manual tasks, connect your tools, and run 24/7 without human input.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
<div class="service-card" onclick="openModal('Shopify Store Automation','Abandoned cart recovery, order notifications, customer email sequences, inventory alerts and review requests — fully automated for your Shopify store.')">
<span class="s-icon">🛒</span>
<h3>Shopify Store Automation</h3>
<p>Abandoned cart recovery, order notifications, customer email sequences, inventory alerts and review requests — fully automated for your Shopify store.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
<div class="service-card" onclick="openModal('Cybersecurity Services','Vulnerability assessments, penetration testing, security audits and digital asset protection for businesses that take their security seriously.')">
<span class="s-icon">🔐</span>
<h3>Cybersecurity Services</h3>
<p>Vulnerability assessments, penetration testing, security audits, and digital asset protection for businesses that take their security seriously.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
<div class="service-card" onclick="openModal('AI Chatbot & Support Systems','Intelligent AI-powered chatbots for websites and stores that handle customer queries, qualify leads, and respond instantly around the clock.')">
<span class="s-icon">🤖</span>
<h3>AI Chatbot & Support Systems</h3>
<p>Intelligent AI-powered chatbots for websites and stores that handle customer queries, qualify leads, and respond instantly around the clock.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
<div class="service-card" onclick="openModal('Cloud Computing & Cloud Security','Cloud infrastructure setup, migration, management and security hardening to scale your business safely and efficiently in the cloud.')">
<span class="s-icon">☁️</span>
<h3>Cloud Computing & Cloud Security</h3>
<p>Cloud infrastructure setup, migration, management and security hardening — scale your business operations safely and efficiently in the cloud.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
<div class="service-card" onclick="openModal('Data & Reporting Automation','Automated data collection, processing and reporting systems that give you business intelligence without manual spreadsheet work.')">
<span class="s-icon">📊</span>
<h3>Data & Reporting Automation</h3>
<p>Automated data collection, processing, and reporting systems that give you business intelligence without manual spreadsheet work.</p>
<div class="card-footer">
<span class="badge-available">Available Now</span>
<div class="btn-order">Order Now <span class="arrow-icon">→</span></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ORDER MODAL -->
<div class="modal-overlay" id="orderModal">
<div class="modal-box">
<button class="modal-close" onclick="closeModal()">✕</button>
<div id="mForm">
<div class="modal-tag">Service Order</div>
<div class="modal-title" id="mTitle"></div>
<div class="modal-desc" id="mDesc"></div>
<form action="https://formspree.io/f/xbdqnerv" method="POST" onsubmit="submitModal(event)">
<input type="hidden" name="service" id="mService" />
<div class="form-group"><label class="form-label">Your Name</label><input class="form-input" type="text" name="name" placeholder="John Smith" required /></div>
<div class="form-group"><label class="form-label">Email Address</label><input class="form-input" type="email" name="email" placeholder="john@example.com" required /></div>
<div class="form-group">
<label class="form-label">Budget Range</label>
<select class="form-input" name="budget">
<option value="">Select range...</option>
<option>Under $100</option><option>$100 – $500</option>
<option>$500 – $1,000</option><option>$1,000 – $3,000</option><option>$3,000+</option>
</select>
</div>
<div class="form-group"><label class="form-label">Project Details</label><textarea class="form-input" name="message" placeholder="Describe what you need, your timeline, any requirements..." required></textarea></div>
<button type="submit" class="btn-submit">Send Order Request →</button>
</form>
</div>
<div class="modal-success" id="mSuccess">
<span class="s-icon">✅</span>
<h3>Request Sent!</h3>
<p>We received your order for <strong id="mSuccessService"></strong>. We'll reply within 24 hours.</p>
</div>
</div>
</div>
<footer class="footer">
<div class="footer-inner">
<div class="footer-brand"><img src="logo.png" alt="FutureStack"><div class="footer-brand-name">FutureStack Intelligence<span>© 2026 All Rights Reserved</span></div></div>
<div class="footer-links">
<a href="index.html">Home</a><a href="services.html">Services</a><a href="ebooks.html">Ebooks</a>
<a href="courses.html">Courses</a><a href="contact.html">Contact</a>
<a href="https://x.com/FUTURESTACK001" target="_blank">X / Twitter</a>
<a href="https://www.linkedin.com/in/futurestackintelligence" target="_blank">LinkedIn</a>
</div>
<div class="footer-copy">Built with precision. Delivered globally.</div>
</div>
</footer>
<div class="bottom-nav">
<div class="bottom-nav-inner">
<a href="index.html" class="bnav-item"><span class="bnav-icon">🏠</span><span class="bnav-label">Home</span></a>
<a href="services.html" class="bnav-item active"><span class="bnav-icon">⚡</span><span class="bnav-label">Services</span></a>
<a href="ebooks.html" class="bnav-item"><span class="bnav-icon">📚</span><span class="bnav-label">Ebooks</span></a>
<a href="contact.html" class="bnav-item"><span class="bnav-icon">✉️</span><span class="bnav-label">Contact</span></a>
</div>
</div>
<script src="shared.js"></script>
</body>
</html>