-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsultation.html
More file actions
278 lines (246 loc) · 11.7 KB
/
consultation.html
File metadata and controls
278 lines (246 loc) · 11.7 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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Free Consultation | ExploitInject</title>
<meta name="description"
content="Request a free consultation with ExploitInject experts. Get professional strategy for your web development, cyber security, and digital marketing needs.">
<meta name="keywords"
content="Free Consultation, Tech Strategy, Hire Security Experts, Web Development Consultation, ExploitInject Strategy">
<meta name="author" content="ExploitInject Team">
<meta property="og:title" content="Free Consultation | ExploitInject">
<meta property="og:description" content="Get a free professional consultation for your next big digital project.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://exploitinject.dev/consultation.html">
<meta property="og:image" content="https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png">
<link rel="icon" href="https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<style>
/* Shared styling from order.html for consistency */
.order-container {
max-width: 800px;
margin: 120px auto 80px;
padding: 0 20px;
position: relative;
z-index: 2;
}
.order-card {
background: rgba(10, 10, 20, 0.6);
backdrop-filter: blur(20px);
border: 1px solid rgba(0, 238, 255, 0.15);
border-radius: 24px;
padding: 50px;
box-shadow: 0 0 50px rgba(0, 238, 255, 0.05);
position: relative;
overflow: hidden;
}
.order-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #00eaff, #00a8ff, #00eaff);
animation: shimmer 2s infinite linear;
background-size: 200% 100%;
}
@keyframes shimmer {
0% { background-position: 100% 0; }
100% { background-position: -100% 0; }
}
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-size: 36px; color: #fff; margin-bottom: 10px; font-weight: 800; }
.form-header h2 span { color: #00eaff; text-shadow: 0 0 15px rgba(0, 238, 255, 0.4); }
.form-header p { color: #a0a0a0; font-size: 16px; }
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; color: #dcdcdc; font-weight: 600; font-size: 14px; letter-spacing: 0.5px; }
input, select, textarea {
width: 100%;
background: rgba(5, 8, 15, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #fff;
padding: 16px;
border-radius: 12px;
font-family: 'Montserrat', sans-serif;
font-size: 15px;
transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
background: rgba(0, 238, 255, 0.03);
border-color: #00eaff;
box-shadow: 0 0 20px rgba(0, 238, 255, 0.15);
outline: none;
transform: translateY(-2px);
}
select option { background: #05080f; color: #fff; }
button[type="submit"] {
width: 100%;
padding: 18px;
background: #00eaff;
color: #000;
font-weight: 800;
font-size: 18px;
border: none;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 0 20px rgba(0, 238, 255, 0.3);
}
button[type="submit"]:hover {
transform: translateY(-3px);
box-shadow: 0 0 40px rgba(0, 238, 255, 0.5);
background: #fff;
}
.split-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media screen and (max-width: 768px) {
.order-container { margin-top: 100px; padding: 0 15px; }
.order-card { padding: 30px 20px; }
.form-header h2 { font-size: 28px; }
.split-inputs { grid-template-columns: 1fr; gap: 0; }
}
</style>
</head>
<body>
<!-- BACKGROUND ANIMATION -->
<div class="background-animation">
<div class="grid"></div>
</div>
<!-- NAVBAR -->
<nav id="siteNav">
<div class="leftnav">
<a href="index.html" class="logo" title="ExploitInject — Home">
<span class="logo-img" aria-hidden="true">
<img src="https://i.ibb.co/JWrx9kZG/Simple-Profile-Photo-Instagram-Post.png" alt="ExploitInject">
</span>
<span class="logo-text glitch">ExploitInject</span>
</a>
</div>
<div class="navlinks">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="connect.html">Connects</a>
</div>
</nav>
<!-- FORM SECTION -->
<div class="order-container">
<div class="order-card">
<div class="form-header">
<h2>Free Strategy <span>Consultation</span></h2>
<p>Discuss your project goals with our experts and get a professional roadmap for success.</p>
</div>
<form action="https://form.codewithtanim.works/f/e1c4d568ceaf249f" method="POST">
<div class="split-inputs">
<div class="form-group">
<label><i class="fas fa-user"></i> Full Name</label>
<input type="text" name="name" placeholder="John Doe" required>
</div>
<div class="form-group">
<label><i class="fas fa-envelope"></i> Email Address</label>
<input type="email" name="email" placeholder="john@example.com" required>
</div>
</div>
<div class="form-group">
<label><i class="fas fa-layer-group"></i> Service of Interest</label>
<select name="service" required>
<option value="">-- Select Service --</option>
<option>Web Development</option>
<option>Cyber Security</option>
<option>Cyber Security Training</option>
<option>Programming Training</option>
<option>Digital Marketing</option>
<option>Graphics Design</option>
<option>Web Analytics & Tracking</option>
<option>App Development</option>
</select>
</div>
<div class="form-group">
<label><i class="fas fa-comment-dots"></i> What are your main goals or challenges?</label>
<textarea name="challenges" rows="5" placeholder="Tell us about your project or the problems you need to solve..." required></textarea>
</div>
<div class="form-group">
<label><i class="fas fa-bullseye"></i> Preferred Contact Method</label>
<select name="contact_method" required>
<option>WhatsApp</option>
<option>Email</option>
<option>Telegram</option>
<option>Zoom Call</option>
<option>Google Meet</option>
<option>Phone Call</option>
</select>
</div>
<button type="submit">Request Consultation <i class="fas fa-arrow-right" style="margin-left: 10px;"></i></button>
<div style="text-align: center; margin-top: 25px;">
<p style="color: #c9c9c9; font-size: 13px; margin-bottom: 10px;">
<i class="fas fa-check-circle" style="color: #00eaff; margin-right: 5px;"></i>
Join 100+ clients who trust our expert strategy.
</p>
<a href="https://review.exploitinject.dev/" target="_blank" style="color: #00eaff; text-decoration: none; font-size: 13px; font-weight: 600;">
<i class="fas fa-star" style="color: #ffcc00; margin-right: 5px;"></i>
Read Authentic Customer Reviews
</a>
</div>
<div style="text-align: center; margin-top: 20px; color: #8fa1b6; font-size: 12px; opacity: 0.7;">
<i class="fas fa-shield-alt"></i> Your data is 100% secure and confidential.
</div>
</form>
</div>
</div>
<!-- FOOTER -->
<footer class="main-footer">
<div class="footer-content">
<div class="footer-col">
<h4>ExploitInject</h4>
<p>Bridging the gap between Cyber Security and Software Development.</p>
</div>
<div class="footer-col">
<h4>Quick Links</h4>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="connect.html">Connect</a></li>
<li><a href="FAQ.html">FAQ</a></li>
<li><a href="consultation.html">Consultation</a></li>
<li><a href="https://review.exploitinject.dev/" target="_blank">Client Reviews</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul class="footer-links">
<li><a href="privacy-policy.html">Privacy Policy</a></li>
<li><a href="terms-and-conditions.html">Terms & Conditions</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Connect With Us</h4>
<div class="footer-social-icons">
<a href="https://www.facebook.com/exploitinjectofficial/" class="footer-social-link" title="Facebook Page"><i class="fab fa-facebook-f"></i></a>
<a href="https://www.instagram.com/exploitinjectofficial/" class="footer-social-link" title="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://github.com/ExploitInject" class="footer-social-link" title="GitHub"><i class="fab fa-github"></i></a>
<a href="mailto:support@exploitinject.dev" class="footer-social-link" title="Email Us"><i
class="fas fa-envelope"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
© 2022 - <span id="currentYear"></span> ExploitInject • Made in Bangladesh
</div>
</footer>
<script>
document.getElementById("currentYear").textContent = new Date().getFullYear();
// Navbar shrink script
window.onscroll = () => {
let nav = document.querySelector("nav");
if (window.scrollY > 50) nav.classList.add("shrink");
else nav.classList.remove("shrink");
};
</script>
</body>
</html>