-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
267 lines (240 loc) · 10.2 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services and Solutions</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
/* General Page Styling */
body {
font-family: 'Arial', sans-serif;
background: url('https://images.unsplash.com/photo-1557683316-973673baf926') no-repeat center center fixed;
background-size: cover;
margin: 0;
padding: 20px; /* Updated for padding */
}
/* Neon text styling */
.text {
font-family: 'Orbitron', sans-serif;
font-size: 20px;
text-transform: uppercase;
text-align: center;
color: #fff;
text-shadow: 0 0 10px rgba(0, 255, 204, 0.8), 0 0 20px rgba(0, 255, 204, 0.6);
letter-spacing: 2px;
transition: transform 0.3s;
}
/* Container Styling with Glassmorphism */
.glass-container {
background: rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(10px);
border-radius: 15px;
padding: 30px;
max-width: 1200px;
margin: auto;
border: 1px solid rgba(255, 255, 255, 0.6);
margin-top: 20px;
}
.robotic-title {
font-family: 'Roboto', sans-serif;
font-size: 38px;
text-transform: uppercase;
letter-spacing: 3px;
animation: pulse 2s;
}
h1,
h2 {
color: white;
text-align: center;
margin-bottom: 20px;
}
/* Card Styling */
.card {
width: 300px; /* Fixed width */
height: 400px; /* Fixed height */
perspective: 1000px; /* Needed for 3D effect */
margin: 15px; /* Margin for spacing */
}
/* Card Inner Styling */
.card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.6s;
transform-style: preserve-3d; /* Preserve 3D effect */
}
/* Card Hover Effect */
.card:hover .card-inner {
transform: rotateY(180deg); /* Rotate on hover */
}
/* Card Face Styling */
.card-front,
.card-back {
position: absolute;
width: 100%;
height: 100%;
border-radius: 10px;
box-shadow: 0 0 10px rgba(237, 92, 242, 0.5);
backface-visibility: hidden; /* Hide back face when rotated */
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
font-family: 'Montserrat', sans-serif;
}
/* Front face styling */
.card-front {
background: rgba(255, 255, 255, 0.0); /* Transparent background */
}
/* Back face styling */
.card-back {
background: rgba(237, 92, 242, 0.1); /* Color for the back face */
transform: rotateY(180deg); /* Initially rotate the back face */
}
/* Card heading styling for overlay */
.card-content {
position: relative; /* Allow absolute positioning of children */
z-index: 1; /* Ensure content is above the image */
padding: 10px; /* Optional padding for text visibility */
}
/* Overlay for h3 */
.card-content h3 {
position: absolute; /* Position absolutely */
top: 10%; /* Distance from the top */
left: 50%; /* Center horizontally */
transform: translate(-50%, -50%); /* Centering adjustment */
z-index: 2; /* Ensure it's above the image */
color: white; /* White text for visibility */
font-size: 1.5em;
margin: 0;
}
/* Card paragraph */
.card p {
font-size: 1em;
line-height: 1.6;
margin-bottom: 20px;
}
.demo-text {
font-size: 18px;
}
/* Responsive Grid */
.services-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/* Button Styling */
.view-service {
background-color: #007BFF;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
margin-top: 20px;
}
.view-service:hover {
background-color: #0056b3;
}
/* Responsive Design */
@media (max-width: 768px) {
.card {
width: 90%;
height: auto;
}
}
.logo img {
max-width: 250px;
margin: 10%;
}
</style>
</head>
<body>
<!-- Glassmorphism Container -->
<div class="glass-container">
<div class="logo">
<img src="GGWhiteLogo24.png" alt="Logo" class="logo">
<img src="iffort.ai-logo.svg" alt="Logo" class="logo">
</div>
<div class="usecase">
<h2 class="robotic-title">Solutions We Provide</h2>
<p style="color: white; text-align: center;">
Our cutting-edge solutions empower businesses to enhance efficiency, improve customer experiences, and drive innovation. Join us in revolutionizing the way organizations operate through intelligent automation and data-driven insights.
</p>
</div>
<div class="services-grid">
<div class="card" onclick="window.open('https://plantseatery.webflow.io/', '_blank')">
<div class="card-inner">
<div class="card-front">
<img src="https://d57439wlqx3vo.cloudfront.net/iblock/6cc/6ccab5f1d555f5739c9a3c7ab53c21a7/0895b691239e211a619a481eadfed209.png?1728243915317" alt="Plants Eatery" style="width: 100%; height: 100%; opacity: 0.3; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 10px;">
<div class="card-content">
<h3>Multilingual Restaurant Solutions</h3>
</div>
</div>
<div class="card-back">
<div class="card-content">
<p>AI-driven solutions for optimizing food service operations and enhancing customer experience.</p>
<div class="demo-text">Demo</div>
</div>
</div>
</div>
</div>
<div class="card" onclick="window.open('https://aiinterviewer.webflow.io/', '_blank')">
<div class="card-inner">
<div class="card-front">
<img src="https://img-cdn.pixlr.com/image-generator/history/65ba5701b4f4f4419f746bc3/806ecb58-167c-4d20-b658-a6a6b2f221e9/medium.webp" alt="Harman Interviewer" style="width: 100%; height: 100%; opacity: 0.3; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 10px;">
<div class="card-content">
<h3>Intelligent Interview Assistant</h3>
</div>
</div>
<div class="card-back">
<div class="card-content">
<p>A cutting-edge AI voice interviewer designed to streamline recruitment processes through intelligent assessments.</p>
<div class="demo-text">Demo</div>
</div>
</div>
</div>
</div>
<div class="card" onclick="window.open('http://samples.iffort.ai:66/', '_blank')">
<div class="card-inner">
<div class="card-front">
<img src="https://cdn.pixabay.com/photo/2017/06/16/12/29/technology-2392820_960_720.jpg" alt="AI Solutions" style="width: 100%; height: 100%; opacity: 0.3; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 10px;">
<div class="card-content">
<h3>AI Solutions</h3>
</div>
</div>
<div class="card-back">
<div class="card-content">
<p>AI-driven tools to optimize hiring processes and improve workforce management.</p>
<div class="demo-text">Demo</div>
</div>
</div>
</div>
</div>
<div class="card" onclick="window.open('https://anyask.com/', '_blank')">
<div class="card-inner">
<div class="card-front">
<img src="https://i.ytimg.com/vi/Qi6kXOb68DQ/maxresdefault.jpg" alt="Anyask" style="width: 100%; height: 100%; opacity: 0.3; object-fit: cover; position: absolute; top: 0; left: 0; border-radius: 10px;">
<div class="card-content">
<h3>Personalized Assistance</h3>
</div>
</div>
<div class="card-back">
<div class="card-content">
<p>A smart assistant offering tailored solutions to meet user needs.</p>
<div class="demo-text">Demo</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>