File size: 12,318 Bytes
21d279e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us - HelloZed IT</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    backdropBlur: {
                        xs: '2px',
                    }
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        input, textarea {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        input::placeholder, textarea::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        input:focus, textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 255, 255, 0.2);
        }
    </style>
</head>
<body class="bg-gradient-to-br from-indigo-500 via-purple-500 to-pink-500">
    <!-- Navigation -->
    <nav class="py-4 px-6 sticky top-0 z-50 glass-effect">
        <div class="max-w-6xl mx-auto flex justify-between items-center">
            <div class="text-2xl font-bold text-white">
                <i class="fas fa-robot mr-2"></i>HelloZed
            </div>
            <div class="hidden md:flex space-x-8">
                <a href="index.html" class="text-white hover:text-indigo-200 transition">Home</a>
                <a href="#" class="text-white hover:text-indigo-200 transition">Services</a>
                <a href="#" class="text-white hover:text-indigo-200 transition">About</a>
                <a href="contact.html" class="text-white hover:text-indigo-200 transition">Contact</a>
            </div>
            <button class="md:hidden text-white">
                <i class="fas fa-bars text-2xl"></i>
            </button>
        </div>
    </nav>

    <!-- Hero Section -->
    <section class="py-20 hero-gradient">
        <div class="max-w-6xl mx-auto px-6 text-center">
            <h1 class="text-4xl md:text-6xl font-bold mb-6 text-white">Get In Touch</h1>
            <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-indigo-100">
                Have questions or ready to start your next project? We'd love to hear from you!
            </p>
        </div>
    </section>

    <!-- Contact Section -->
    <section class="py-20">
        <div class="max-w-6xl mx-auto px-6">
            <div class="grid md:grid-cols-2 gap-12">
                <!-- Contact Form -->
                <div class="glass-effect p-8 rounded-xl">
                    <h2 class="text-2xl font-bold mb-6 text-white">Send us a message</h2>
                    <form id="contactForm" class="space-y-6">
                        <div>
                            <label class="block text-white mb-2">Name</label>
                            <input type="text" id="name" required class="w-full px-4 py-3 rounded-lg">
                        </div>
                        <div>
                            <label class="block text-white mb-2">Email</label>
                            <input type="email" id="email" required class="w-full px-4 py-3 rounded-lg">
                        </div>
                        <div>
                            <label class="block text-white mb-2">Subject</label>
                            <input type="text" id="subject" required class="w-full px-4 py-3 rounded-lg">
                        </div>
                        <div>
                            <label class="block text-white mb-2">Message</label>
                            <textarea id="message" rows="5" required class="w-full px-4 py-3 rounded-lg"></textarea>
                        </div>
                        <button type="submit" class="w-full bg-white text-indigo-600 px-6 py-3 rounded-lg font-medium hover:bg-indigo-50 transition">
                            Send Message
                        </button>
                    </form>
                </div>

                <!-- Contact Information -->
                <div>
                    <h2 class="text-2xl font-bold mb-6 text-white">Contact Information</h2>
                    
                    <div class="space-y-6">
                        <div class="glass-effect p-6 rounded-xl contact-card transition duration-300">
                            <div class="flex items-start">
                                <div class="text-white text-2xl mr-4">
                                    <i class="fas fa-map-marker-alt"></i>
                                </div>
                                <div>
                                    <h3 class="font-bold text-white mb-1">Our Location</h3>
                                    <p class="text-indigo-100">123 Innovation Street<br>Tech City, TC 10001</p>
                                </div>
                            </div>
                        </div>

                        <div class="glass-effect p-6 rounded-xl contact-card transition duration-300">
                            <div class="flex items-start">
                                <div class="text-white text-2xl mr-4">
                                    <i class="fas fa-phone-alt"></i>
                                </div>
                                <div>
                                    <h3 class="font-bold text-white mb-1">Phone Number</h3>
                                    <p class="text-indigo-100">+1 (555) 123-4567</p>
                                </div>
                            </div>
                        </div>

                        <div class="glass-effect p-6 rounded-xl contact-card transition duration-300">
                            <div class="flex items-start">
                                <div class="text-white text-2xl mr-4">
                                    <i class="fas fa-envelope"></i>
                                </div>
                                <div>
                                    <h3 class="font-bold text-white mb-1">Email Address</h3>
                                    <p class="text-indigo-100">info@hellozed.com<br>support@hellozed.com</p>
                                </div>
                            </div>
                        </div>

                        <div class="glass-effect p-6 rounded-xl contact-card transition duration-300">
                            <div class="flex items-start">
                                <div class="text-white text-2xl mr-4">
                                    <i class="fas fa-clock"></i>
                                </div>
                                <div>
                                    <h3 class="font-bold text-white mb-1">Working Hours</h3>
                                    <p class="text-indigo-100">Monday - Friday: 9AM - 6PM<br>Saturday: 10AM - 4PM</p>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Map Section -->
    <section class="py-10">
        <div class="max-w-6xl mx-auto px-6">
            <div class="glass-effect rounded-xl overflow-hidden">
                <iframe 
                    src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d193595.15830869428!2d-74.11976397304603!3d40.69766374874431!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c24fa5d33f083b%3A0xc80b8f06e177fe62!2sNew%20York%2C%20NY%2C%20USA!5e0!3m2!1sen!2s!4v1690000000000!5m2!1sen!2s" 
                    width="100%" 
                    height="400" 
                    style="border:0;" 
                    allowfullscreen="" 
                    loading="lazy">
                </iframe>
            </div>
        </div>
    </section>

    <!-- Footer -->
    <footer class="py-12 glass-effect mt-20">
        <div class="max-w-6xl mx-auto px-6 grid md:grid-cols-4 gap-8">
            <div>
                <h3 class="text-xl font-bold mb-4 text-white">HelloZed</h3>
                <p class="text-indigo-100">Innovative technology solutions for modern businesses.</p>
            </div>
            <div>
                <h4 class="font-bold mb-4 text-white">Quick Links</h4>
                <ul class="space-y-2">
                    <li><a href="index.html" class="text-indigo-100 hover:text-white transition">Home</a></li>
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">Services</a></li>
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">About</a></li>
                    <li><a href="contact.html" class="text-indigo-100 hover:text-white transition">Contact</a></li>
                </ul>
            </div>
            <div>
                <h4 class="font-bold mb-4 text-white">Services</h4>
                <ul class="space-y-2">
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">Web Development</a></li>
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">Mobile Apps</a></li>
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">Cloud Solutions</a></li>
                    <li><a href="#" class="text-indigo-100 hover:text-white transition">AI & ML</a></li>
                </ul>
            </div>
            <div>
                <h4 class="font-bold mb-4 text-white">Connect</h4>
                <div class="flex space-x-4">
                    <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-twitter"></i></a>
                    <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-linkedin"></i></a>
                    <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-github"></i></a>
                    <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-instagram"></i></a>
                </div>
            </div>
        </div>
        <div class="max-w-6xl mx-auto px-6 mt-8 pt-8 border-t border-white/20 text-center text-indigo-100">
            <p>&copy; 2023 HelloZed IT. All rights reserved.</p>
        </div>
    </footer>

    <script>
        document.getElementById('contactForm').addEventListener('submit', function(e) {
            e.preventDefault();
            
            // Get form values
            const name = document.getElementById('name').value;
            const email = document.getElementById('email').value;
            const subject = document.getElementById('subject').value;
            const message = document.getElementById('message').value;
            
            // Simple validation
            if(name && email && subject && message) {
                // In a real application, you would send this data to a server
                alert('Thank you for your message! We will get back to you soon.');
                this.reset();
            } else {
                alert('Please fill in all fields.');
            }
        });
    </script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>