forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.html
174 lines (152 loc) · 5.32 KB
/
service.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services</title>
<style>
/* Global Styles */
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
color: #333;
}
.container-xxl {
padding: 50px 0;
}
h1, h4 {
font-family: 'Poppins', sans-serif;
color: #333;
}
.section-title {
display: inline-block;
padding: 5px 20px;
border-radius: 50px;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
}
.display-6 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 40px;
}
/* Internal CSS for max-width */
.max-width-600 {
max-width: 600px;
margin-left: auto;
margin-right: auto;
text-align: center;
margin-bottom: 50px;
}
/* Flexbox Styles for Services */
.services-container {
display: flex;
flex-wrap: wrap;
gap: 30px;
justify-content: center;
}
.service-item {
background-color: #fff;
padding: 30px;
border-radius: 8px;
text-align: center;
flex-basis: calc(33.333% - 30px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.service-item:hover {
transform: translateY(-10px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}
h4 {
font-size: 1.25rem;
font-weight: 600;
color: #007bff;
margin-bottom: 10px;
}
.service-description {
font-size: 1rem;
color: #666;
line-height: 1.5;
}
/* Different background colors for services */
.service-item:nth-child(1) {
background-color: #f8d7da;
}
.service-item:nth-child(2) {
background-color: #d4edda;
}
.service-item:nth-child(3) {
background-color: #d1ecf1;
}
.service-item:nth-child(4) {
background-color: #fff3cd;
}
.service-item:nth-child(5) {
background-color: #cce5ff;
}
.service-item:nth-child(6) {
background-color: #e2e3e5;
}
/* Responsive Design */
@media (max-width: 768px) {
.service-item {
flex-basis: calc(50% - 30px);
}
.display-6 {
font-size: 2rem;
}
}
@media (max-width: 576px) {
.service-item {
flex-basis: 100%;
}
.service-item {
padding: 20px;
}
}
</style>
</head>
<body>
<!-- Service Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="max-width-600">
<h6 class="section-title bg-white text-center text-primary px-3">Services</h6>
<h1 class="display-6 mb-4">We Focus On Making The Best In All Sectors</h1>
</div>
<div class="services-container">
<div class="service-item">
<h4>Web Design</h4>
<p class="service-description">We create visually appealing and responsive websites tailored to your business needs, ensuring a seamless user experience on all devices.</p>
</div>
<div class="service-item">
<h4>App Development</h4>
<p class="service-description">Our team develops high-quality mobile and web applications, focusing on performance, user-friendliness, and cross-platform compatibility.</p>
</div>
<div class="service-item">
<h4>SEO Optimization</h4>
<p class="service-description">We boost your website's visibility on search engines using the latest SEO techniques, driving organic traffic to your business.</p>
</div>
<div class="service-item">
<h4>Social Marketing</h4>
<p class="service-description">Our social media marketing strategies help you connect with your target audience, grow your brand, and increase engagement across platforms.</p>
</div>
<div class="service-item">
<h4>Graphics Designing</h4>
<p class="service-description">From logos to complete brand identities, our creative team delivers stunning graphic designs that leave a lasting impression.</p>
</div>
<div class="service-item">
<h4>LinkedIn Optimization</h4>
<p class="service-description">We help you build a strong LinkedIn presence, optimize your profile, and enhance your professional network to achieve your career goals.</p>
</div>
</div>
</div>
</div>
<!-- Service End -->
</body>
</html>