-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.html
435 lines (380 loc) · 18 KB
/
packages.html
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Packages | EasyCat</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/easycat_logo.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css" rel="stylesheet">
<style>
.contact {
margin-top: -80px;
}
.package-list {
list-style: none;
/* Removes default bullet points */
padding: 0;
/* Removes default padding */
margin: 0;
/* Removes default margin */
margin-top: 10px;
text-align: left;
/* Ensures text aligns left */
}
.package-list li {
display: flex;
/* Enables flexbox for alignment */
align-items: center;
/* Aligns icon and text vertically */
gap: 8px;
/* Adds spacing between icon and text */
padding: 8px 0;
/* Adds vertical spacing between items */
font-size: 12px;
/* Adjust font size */
color: #444;
/* Adjust text color */
text-align: left;
/* Ensures content inside each item aligns left */
transition: color 0.3s ease;
/* Smooth transition for text color */
}
.package-list li i {
color: #047aed;
/* Icon color */
flex-shrink: 0;
/* Prevents icon from shrinking */
}
.package-list li:last-child {
border-bottom: none;
/* Removes border from the last item */
}
.package-list li:hover {
color: #047aed;
/* Changes text color on hover */
}
/* Style for cards */
.services .row {
display: flex;
flex-wrap: wrap;
/* Ensures cards wrap on smaller screens */
justify-content: space-between;
/* Adds spacing between cards */
}
.icon-box {
width: calc(100% - 15px);
/* Ensures two cards per row with a small gap */
box-sizing: border-box;
/* Includes padding and border in width */
margin: 10px 0;
/* Adds spacing between rows */
border: 1px solid #ddd;
/* Subtle border for cards */
padding: 20px;
/* Adds padding inside the cards */
background-color: #fff;
/* Background color for cards */
transition: background-color 0.3s ease, color 0.3s ease;
/* Smooth transition for hover effect */
}
.icon-box:hover ul>li {
color: lightgray;
}
.icon-box:hover ul>li>i {
color: lightgray;
}
.icon-box:hover ul>li>i {
color: lightgray;
}
/* New: Responsive adjustments */
@media (max-width: 768px) {
.icon-box {
width: 100%;
/* Full width for smaller screens */
}
}
</style>
<!-- =======================================================
* Template Name: Day
* Updated: Aug 17 2023 with Bootstrap v5.3.1
* Template URL: https://bootstrapmade.com/day-multipurpose-html-template-for-free/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Top Bar ======= -->
<section id="topbar" class="d-flex align-items-center">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope-fill"></i><a
href="mailto:easycattechnologies@gmail.com">easycattechnologies@gmail.com</a>
<i class="bi bi-phone-fill phone-icon"></i> +94 75 792 8275
</div>
<div class="social-links d-none d-md-block">
<a href="#" class="twitter"><i class="bi bi-tiktok"></i></a>
<a href="https://web.facebook.com/EasyCat.techno" class="facebook"><i class="bi bi-facebook"></i></a>
<a href="https://www.instagram.com/easycat_technologies/" class="instagram"><i class="bi bi-instagram"></i></a>
<a href="https://www.linkedin.com/company/easycat-technologies/" class="linkedin"><i
class="bi bi-linkedin"></i></i></a>
</div>
</div>
</section>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><img src="assets/img/easycat_logo_transparent.png" style="margin-top: -5px; width: 60px; height: 120px; margin-right: 0px;" alt=""><a href="index.html">easyCat</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto" href="index.html">Home</a></li>
<li><a class="nav-link scrollto" href="index.html#about">About</a></li>
<li class="dropdown">
<a href="index.html#services"><span>Services</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="custom-software-development.html">Custom
Software Developemnt</a></li>
<li><a href="search-engine-optimization.html">Search Engine
Optimization</a></li>
<li><a href="digital-and-social-media-marketing.html">Digital & Social Media Marketing</a>
</li>
<li><a href="ems-system.html">Employee & Salary Management System</a></li>
<li><a href="web-development.html">Web Design & Development</a></li>
<li><a href="mobile-application-development.html">Mobile Application Development</a></li>
</ul>
</li>
<li><a class="nav-link scrollto active" href="packages.html">Packages</a></li>
<!-- <li><a class="nav-link scrollto" href="academy.html">Academy</a></li> -->
<li><a class="nav-link scrollto" href="index.html#team">Team</a></li>
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="index.html#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<main id="main">
<!-- ======= Breadcrumbs ======= -->
<section id="breadcrumbs" class="breadcrumbs">
<div class="container">
<ol>
<li><a href="index.html">Home</a></li>
<li>Packages Page</li>
</ol>
<h2>Packages</h2>
</div>
</section><!-- End Breadcrumbs -->
<section class="contact">
<div class="container">
<div class="row" data-aos="fade-up">
<!-- ======= Services Section ======= -->
<section class="services">
<div class="container">
<div class="row">
<!-- Heading before packages -->
<div class="col-12 text-center mb-4">
<h2>Here are our available packages</h2>
<p>Choose the one that best fits your needs, or create a custom package by contacting us!</p>
</div>
<!-- Kitten Starter (Pkg 01) -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up"
data-aos-delay="150">
<div class="icon-box">
<div class="icon"><i class="bi bi-search"></i></div>
<h4><a href="">Basic</a></h4>
<p class="price">Price: <strong>LKR 11,900/=</strong></p>
<ul class="package-list">
<li><i class="bi bi-check-circle"></i> On-Page SEO Optimization</li>
<li><i class="bi bi-check-circle"></i> Basic Website Analysis</li>
<li><i class="bi bi-check-circle"></i> Keyword Research</li>
<li><i class="bi bi-check-circle"></i> Social Media Marketing (Free)</li>
</ul>
</div>
</div>
<!-- Tabby Boost (Pkg 02) -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up"
data-aos-delay="150">
<div class="icon-box">
<div class="icon"><i class="bi bi-browser-chrome"></i></div>
<h4><a href="">Standard</a></h4>
<p class="price">Price: <strong>LKR 19,900/=</strong></p>
<ul class="package-list">
<li><i class="bi bi-check-circle"></i> On-Page SEO Optimization</li>
<li><i class="bi bi-check-circle"></i> Complete Website Development</li>
<li><i class="bi bi-check-circle"></i> Responsive Design</li>
<li><i class="bi bi-check-circle"></i> Google Analytics Initial Setup</li>
<li><i class="bi bi-check-circle"></i> Basic Content Integration</li>
<li><i class="bi bi-check-circle"></i> Social Media Marketing (Free)</li>
</ul>
</div>
</div>
<!-- Leopard Pro (Pkg 03) -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up"
data-aos-delay="150">
<div class="icon-box">
<div class="icon"><i class="bi bi-bar-chart-line"></i></div>
<h4><a href="">Premium</a></h4>
<p class="price">Price: <strong>LKR 29,900/=</strong></p>
<ul class="package-list">
<li><i class="bi bi-check-circle"></i> Advanced On-Page SEO Optimization</li>
<li><i class="bi bi-check-circle"></i> Complete Website Development</li>
<li><i class="bi bi-check-circle"></i> Custom Design</li>
<li><i class="bi bi-check-circle"></i> Content Strategy</li>
<li><i class="bi bi-check-circle"></i> Performance Optimization</li>
<li><i class="bi bi-check-circle"></i> Pages H tags Optimization</li>
<li><i class="bi bi-check-circle"></i> Mobile Usability Check</li>
<li><i class="bi bi-check-circle"></i> Social Media Marketing (Free)</li>
</ul>
</div>
</div>
<!-- Tiger Tech (Pkg 04) -->
<div class="col-lg-3 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up"
data-aos-delay="150">
<div class="icon-box">
<div class="icon"><i class="bi bi-code"></i></div>
<h4><a href="">EMS</a></h4>
<p class="price">Monthly: <strong>LKR 14,900/=</strong></p>
<ul class="package-list">
<li><i class="bi bi-check-circle"></i> Employee & Salary Management System</li>
<li><i class="bi bi-check-circle"></i> Custom Solution Design</li>
<li><i class="bi bi-check-circle"></i> Scalable Architecture</li>
<li><i class="bi bi-check-circle"></i> Wireframing</li>
<li><i class="bi bi-check-circle"></i> UI/ UX Design</li>
<li><i class="bi bi-check-circle"></i> Ongoing Technical Support</li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- End Services Section -->
</div>
</div>
<!-- Custom Message Section -->
<div class="row mt-2">
<div class="col-12 text-center">
<p>Didn't find the right package? You can create a custom package for your needs!</p>
<p>Email us at <a href="mailto:easycattechnologies@gmail.com">easycattechnologies@gmail.com</a> or call us
at <a href="tel:+94757928275">+94757928275</a> or <a href="https://calendly.com/easycattechnologies">book a meeting</a> now to find the right package for your needs.</p>
</div>
</div>
</section>
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer-info">
<h3>EasyCat</h3>
<p>
Colombo <br>
Western Province, LK<br><br>
<strong>Phone:</strong> +94 75 792 8275<br>
<strong>Email:</strong> easycattechnologies@gmail.com<br>
</p>
<div class="social-links mt-3">
<a href="#" class="facebook"><i class="bx bxl-tiktok"></i></a>
<a href="https://web.facebook.com/EasyCat.techno" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="https://www.instagram.com/easycat_technologies/" class="instagram"><i
class="bx bxl-instagram"></i></a>
<a href="https://www.linkedin.com/company/easycat-technologies/" class="linkedin"><i
class="bx bxl-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#hero">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#about">About</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#services">Services</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="packages.html">Packages</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#team">Team</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="index.html#contact">Contact</a></li>
</ul>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="custom-software-development.html">Custom Software Development</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="search-engine-optimization.html">SEO</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="digital-and-social-media-marketing.html">Digital & Social Media Marketing</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="ems-system.html">EMS Software</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="web-development.html">Web Development</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="mobile-application-development.html">Mobile App Development</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-6 footer-newsletter">
<h4>EasyCat Technologies</h4>
<p>Leading the way in innovative software solutions and technology services globally.</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© 2025 <strong><span>EasyCat Technologies </span></strong>- All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/day-multipurpose-html-template-for-free/ -->
<!-- Developed by <a href="">easyCat Technologies</a> -->
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i
class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<script src="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.js"></script>
<script>
AOS.init();
</script>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>