John2121 commited on
Commit
42d745f
·
verified ·
1 Parent(s): 29bc20f

wtf im a contractor for construcgtion and tech/web site infastructor

Browse files
Files changed (4) hide show
  1. components/footer.js +17 -15
  2. components/header.js +3 -3
  3. index.html +63 -103
  4. script.js +19 -14
components/footer.js CHANGED
@@ -116,8 +116,8 @@ class CustomFooter extends HTMLElement {
116
  <div class="container">
117
  <div class="footer-grid">
118
  <div class="footer-column">
119
- <h3>LawConnect</h3>
120
- <p>Providing expert legal services with integrity and dedication since 2003. We're committed to achieving the best possible outcomes for our clients.</p>
121
  <div class="social-links">
122
  <a href="#"><i data-feather="facebook"></i></a>
123
  <a href="#"><i data-feather="twitter"></i></a>
@@ -127,14 +127,14 @@ class CustomFooter extends HTMLElement {
127
  </div>
128
 
129
  <div class="footer-column">
130
- <h3>Practice Areas</h3>
131
  <ul>
132
- <li><a href="#">Corporate Law</a></li>
133
- <li><a href="#">Real Estate Law</a></li>
134
- <li><a href="#">Family Law</a></li>
135
- <li><a href="#">Criminal Defense</a></li>
136
- <li><a href="#">Personal Injury</a></li>
137
- <li><a href="#">Estate Planning</a></li>
138
  </ul>
139
  </div>
140
 
@@ -142,25 +142,25 @@ class CustomFooter extends HTMLElement {
142
  <h3>Contact Us</h3>
143
  <div class="contact-info">
144
  <i data-feather="map-pin"></i>
145
- <span>123 Legal Avenue, Suite 100<br>New York, NY 10001</span>
146
  </div>
147
  <div class="contact-info">
148
  <i data-feather="phone"></i>
149
- <span>(123) 456-7890</span>
150
  </div>
151
  <div class="contact-info">
152
  <i data-feather="mail"></i>
153
- <span>info@lawconnect.com</span>
154
  </div>
155
  <div class="contact-info">
156
  <i data-feather="clock"></i>
157
- <span>Mon-Fri: 9AM - 6PM</span>
158
  </div>
159
  </div>
160
  </div>
161
 
162
  <div class="copyright">
163
- <p>&copy; 2023 LawConnect Legal Services. All rights reserved.</p>
164
  </div>
165
  </div>
166
  </footer>
@@ -170,7 +170,9 @@ class CustomFooter extends HTMLElement {
170
  const featherScript = document.createElement('script');
171
  featherScript.src = 'https://unpkg.com/feather-icons';
172
  featherScript.onload = () => {
173
- feather.replace();
 
 
174
  };
175
  this.shadowRoot.appendChild(featherScript);
176
  }
 
116
  <div class="container">
117
  <div class="footer-grid">
118
  <div class="footer-column">
119
+ <h3>ConstructionTech Solutions</h3>
120
+ <p>Specialized construction and technology infrastructure services for commercial and industrial clients. Building the future, one project at a time.</p>
121
  <div class="social-links">
122
  <a href="#"><i data-feather="facebook"></i></a>
123
  <a href="#"><i data-feather="twitter"></i></a>
 
127
  </div>
128
 
129
  <div class="footer-column">
130
+ <h3>Services</h3>
131
  <ul>
132
+ <li><a href="#">Commercial Construction</a></li>
133
+ <li><a href="#">Data Center Infrastructure</a></li>
134
+ <li><a href="#">Network Infrastructure</a></li>
135
+ <li><a href="#">Industrial Facilities</a></li>
136
+ <li><a href="#">Smart Building Systems</a></li>
137
+ <li><a href="#">Maintenance & Support</a></li>
138
  </ul>
139
  </div>
140
 
 
142
  <h3>Contact Us</h3>
143
  <div class="contact-info">
144
  <i data-feather="map-pin"></i>
145
+ <span>456 Industrial Blvd, Suite 200<br>Chicago, IL 60601</span>
146
  </div>
147
  <div class="contact-info">
148
  <i data-feather="phone"></i>
149
+ <span>(312) 555-7890</span>
150
  </div>
151
  <div class="contact-info">
152
  <i data-feather="mail"></i>
153
+ <span>info@constructiontech.com</span>
154
  </div>
155
  <div class="contact-info">
156
  <i data-feather="clock"></i>
157
+ <span>Mon-Fri: 8AM - 6PM</span>
158
  </div>
159
  </div>
160
  </div>
161
 
162
  <div class="copyright">
163
+ <p>&copy; 2023 ConstructionTech Solutions. All rights reserved.</p>
164
  </div>
165
  </div>
166
  </footer>
 
170
  const featherScript = document.createElement('script');
171
  featherScript.src = 'https://unpkg.com/feather-icons';
172
  featherScript.onload = () => {
173
+ if (typeof feather !== 'undefined') {
174
+ feather.replace();
175
+ }
176
  };
177
  this.shadowRoot.appendChild(featherScript);
178
  }
components/header.js CHANGED
@@ -110,12 +110,12 @@ class CustomHeader extends HTMLElement {
110
  <header class="header">
111
  <div class="container">
112
  <div class="nav-container">
113
- <a href="/" class="logo">Law<span>Connect</span></a>
114
 
115
  <ul class="nav-links">
116
  <li><a href="/">Home</a></li>
117
  <li><a href="#services">Services</a></li>
118
- <li><a href="#about">About</a></li>
119
  <li><a href="#contact">Contact</a></li>
120
  </ul>
121
 
@@ -130,7 +130,7 @@ class CustomHeader extends HTMLElement {
130
  <ul>
131
  <li><a href="/">Home</a></li>
132
  <li><a href="#services">Services</a></li>
133
- <li><a href="#about">About</a></li>
134
  <li><a href="#contact">Contact</a></li>
135
  </ul>
136
  </div>
 
110
  <header class="header">
111
  <div class="container">
112
  <div class="nav-container">
113
+ <a href="/" class="logo">Construction<span>Tech</span></a>
114
 
115
  <ul class="nav-links">
116
  <li><a href="/">Home</a></li>
117
  <li><a href="#services">Services</a></li>
118
+ <li><a href="#projects">Projects</a></li>
119
  <li><a href="#contact">Contact</a></li>
120
  </ul>
121
 
 
130
  <ul>
131
  <li><a href="/">Home</a></li>
132
  <li><a href="#services">Services</a></li>
133
+ <li><a href="#projects">Projects</a></li>
134
  <li><a href="#contact">Contact</a></li>
135
  </ul>
136
  </div>
index.html CHANGED
@@ -3,7 +3,7 @@
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
- <title>LawConnect Legal Services</title>
7
  <link rel="stylesheet" href="style.css">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
@@ -16,8 +16,8 @@
16
  <!-- Hero Section -->
17
  <section class="relative bg-gradient-to-r from-blue-900 to-indigo-900 text-white py-20 md:py-32">
18
  <div class="container mx-auto px-4 text-center">
19
- <h1 class="text-4xl md:text-6xl font-playfair font-bold mb-6">Expert Legal Solutions</h1>
20
- <p class="text-xl md:text-2xl max-w-3xl mx-auto mb-10">Trusted legal representation for individuals and businesses across all practice areas</p>
21
  <div class="flex flex-col sm:flex-row justify-center gap-4">
22
  <a href="#contact" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Get Free Consultation</a>
23
  <a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Our Services</a>
@@ -29,62 +29,62 @@
29
  <section id="services" class="py-20 bg-gray-50">
30
  <div class="container mx-auto px-4">
31
  <div class="text-center mb-16">
32
- <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Our Legal Services</h2>
33
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive legal solutions tailored to your specific needs</p>
34
  </div>
35
 
36
  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
37
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
38
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
39
- <i data-feather="briefcase" class="text-amber-600 w-8 h-8"></i>
40
  </div>
41
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Corporate Law</h3>
42
- <p class="text-gray-600 mb-6">Business formation, contracts, compliance, and corporate governance for companies of all sizes.</p>
43
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
44
  </div>
45
 
46
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
47
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
48
- <i data-feather="home" class="text-amber-600 w-8 h-8"></i>
49
  </div>
50
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Real Estate Law</h3>
51
- <p class="text-gray-600 mb-6">Property transactions, zoning issues, landlord-tenant disputes, and title disputes.</p>
52
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
53
  </div>
54
 
55
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
56
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
57
- <i data-feather="users" class="text-amber-600 w-8 h-8"></i>
58
  </div>
59
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Family Law</h3>
60
- <p class="text-gray-600 mb-6">Divorce, child custody, adoption, and domestic relations matters with compassionate guidance.</p>
61
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
62
  </div>
63
 
64
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
65
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
66
- <i data-feather="shield" class="text-amber-600 w-8 h-8"></i>
67
  </div>
68
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Criminal Defense</h3>
69
- <p class="text-gray-600 mb-6">Strong defense against criminal charges with experienced attorneys fighting for your rights.</p>
70
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
71
  </div>
72
 
73
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
74
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
75
- <i data-feather="heart" class="text-amber-600 w-8 h-8"></i>
76
  </div>
77
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Personal Injury</h3>
78
- <p class="text-gray-600 mb-6">Compensation for injuries caused by negligence with dedicated representation.</p>
79
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
80
  </div>
81
 
82
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
83
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
84
- <i data-feather="file-text" class="text-amber-600 w-8 h-8"></i>
85
  </div>
86
- <h3 class="text-2xl font-bold text-gray-900 mb-4">Estate Planning</h3>
87
- <p class="text-gray-600 mb-6">Wills, trusts, probate, and estate administration to protect your legacy.</p>
88
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
89
  </div>
90
  </div>
@@ -96,11 +96,11 @@
96
  <div class="container mx-auto px-4">
97
  <div class="flex flex-col lg:flex-row items-center gap-12">
98
  <div class="lg:w-1/2">
99
- <img src="http://static.photos/office/1200x630/42" alt="Legal team" class="rounded-xl shadow-lg">
100
  </div>
101
  <div class="lg:w-1/2">
102
- <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-6">Why Choose LawConnect</h2>
103
- <p class="text-gray-600 text-lg mb-8">With over 20 years of experience, our team of legal experts provides personalized solutions tailored to your unique situation. We combine deep legal knowledge with a commitment to client success.</p>
104
 
105
  <div class="space-y-6">
106
  <div class="flex items-start">
@@ -110,8 +110,8 @@
110
  </div>
111
  </div>
112
  <div class="ml-4">
113
- <h3 class="text-xl font-bold text-gray-900">Proven Track Record</h3>
114
- <p class="text-gray-600 mt-2">Successful outcomes in thousands of cases across multiple practice areas</p>
115
  </div>
116
  </div>
117
 
@@ -122,8 +122,8 @@
122
  </div>
123
  </div>
124
  <div class="ml-4">
125
- <h3 class="text-xl font-bold text-gray-900">Personalized Attention</h3>
126
- <p class="text-gray-600 mt-2">Direct access to experienced attorneys who understand your specific needs</p>
127
  </div>
128
  </div>
129
 
@@ -134,8 +134,8 @@
134
  </div>
135
  </div>
136
  <div class="ml-4">
137
- <h3 class="text-xl font-bold text-gray-900">Transparent Communication</h3>
138
- <p class="text-gray-600 mt-2">Clear explanations of legal processes and regular updates on your case</p>
139
  </div>
140
  </div>
141
  </div>
@@ -144,86 +144,47 @@
144
  </div>
145
  </section>
146
 
147
- <!-- Testimonials -->
148
  <section class="py-20 bg-gray-50">
149
  <div class="container mx-auto px-4">
150
  <div class="text-center mb-16">
151
- <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Client Testimonials</h2>
152
- <p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear what our clients have to say about our legal services</p>
153
  </div>
154
 
155
- <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
156
- <div class="bg-white p-8 rounded-xl shadow-lg">
157
- <div class="flex items-center mb-6">
158
- <div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
159
- <i data-feather="star" class="text-amber-500 w-6 h-6"></i>
160
- </div>
161
- <div class="ml-4">
162
- <div class="flex text-amber-400">
163
- <i data-feather="star" class="w-5 h-5"></i>
164
- <i data-feather="star" class="w-5 h-5"></i>
165
- <i data-feather="star" class="w-5 h-5"></i>
166
- <i data-feather="star" class="w-5 h-5"></i>
167
- <i data-feather="star" class="w-5 h-5"></i>
168
- </div>
169
- </div>
170
- </div>
171
- <p class="text-gray-600 mb-6 italic">"The team at LawConnect helped me navigate a complex business dispute. Their expertise and dedication resulted in a favorable outcome that exceeded my expectations."</p>
172
- <div class="flex items-center">
173
- <div class="w-12 h-12 rounded-full bg-gray-300"></div>
174
- <div class="ml-4">
175
- <h4 class="font-bold text-gray-900">Michael Thompson</h4>
176
- <p class="text-gray-600">Corporate Client</p>
177
  </div>
178
  </div>
179
  </div>
180
 
181
- <div class="bg-white p-8 rounded-xl shadow-lg">
182
- <div class="flex items-center mb-6">
183
- <div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
184
- <i data-feather="star" class="text-amber-500 w-6 h-6"></i>
185
- </div>
186
- <div class="ml-4">
187
- <div class="flex text-amber-400">
188
- <i data-feather="star" class="w-5 h-5"></i>
189
- <i data-feather="star" class="w-5 h-5"></i>
190
- <i data-feather="star" class="w-5 h-5"></i>
191
- <i data-feather="star" class="w-5 h-5"></i>
192
- <i data-feather="star" class="w-5 h-5"></i>
193
- </div>
194
- </div>
195
- </div>
196
- <p class="text-gray-600 mb-6 italic">"After my accident, I was overwhelmed with medical bills and lost wages. LawConnect fought for my rights and secured a settlement that covered all my expenses and more."</p>
197
- <div class="flex items-center">
198
- <div class="w-12 h-12 rounded-full bg-gray-300"></div>
199
- <div class="ml-4">
200
- <h4 class="font-bold text-gray-900">Sarah Johnson</h4>
201
- <p class="text-gray-600">Personal Injury Client</p>
202
  </div>
203
  </div>
204
  </div>
205
 
206
- <div class="bg-white p-8 rounded-xl shadow-lg">
207
- <div class="flex items-center mb-6">
208
- <div class="w-12 h-12 bg-amber-100 rounded-full flex items-center justify-center">
209
- <i data-feather="star" class="text-amber-500 w-6 h-6"></i>
210
- </div>
211
- <div class="ml-4">
212
- <div class="flex text-amber-400">
213
- <i data-feather="star" class="w-5 h-5"></i>
214
- <i data-feather="star" class="w-5 h-5"></i>
215
- <i data-feather="star" class="w-5 h-5"></i>
216
- <i data-feather="star" class="w-5 h-5"></i>
217
- <i data-feather="star" class="w-5 h-5"></i>
218
- </div>
219
- </div>
220
- </div>
221
- <p class="text-gray-600 mb-6 italic">"During my divorce proceedings, LawConnect provided compassionate yet firm representation. They guided me through every step and achieved the best possible outcome for my family."</p>
222
- <div class="flex items-center">
223
- <div class="w-12 h-12 rounded-full bg-gray-300"></div>
224
- <div class="ml-4">
225
- <h4 class="font-bold text-gray-900">Robert Chen</h4>
226
- <p class="text-gray-600">Family Law Client</p>
227
  </div>
228
  </div>
229
  </div>
@@ -234,13 +195,13 @@
234
  <!-- Contact CTA -->
235
  <section id="contact" class="py-20 bg-gradient-to-r from-blue-900 to-indigo-900 text-white">
236
  <div class="container mx-auto px-4 text-center">
237
- <h2 class="text-3xl md:text-4xl font-playfair font-bold mb-6">Ready to Get Started?</h2>
238
- <p class="text-xl max-w-3xl mx-auto mb-10">Schedule your free consultation today and let us help you navigate your legal challenges</p>
239
  <div class="flex flex-col sm:flex-row justify-center gap-4">
240
  <a href="tel:+11234567890" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
241
  <i data-feather="phone" class="mr-2"></i> Call Now
242
  </a>
243
- <a href="mailto:info@lawconnect.com" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
244
  <i data-feather="mail" class="mr-2"></i> Email Us
245
  </a>
246
  </div>
@@ -256,6 +217,5 @@
256
  <script>
257
  feather.replace();
258
  </script>
259
- <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
260
  </body>
261
  </html>
 
3
  <head>
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>ConstructionTech Solutions - Building the Future</title>
7
  <link rel="stylesheet" href="style.css">
8
  <script src="https://cdn.tailwindcss.com"></script>
9
  <script src="https://unpkg.com/feather-icons"></script>
 
16
  <!-- Hero Section -->
17
  <section class="relative bg-gradient-to-r from-blue-900 to-indigo-900 text-white py-20 md:py-32">
18
  <div class="container mx-auto px-4 text-center">
19
+ <h1 class="text-4xl md:text-6xl font-playfair font-bold mb-6">Building Infrastructure for Tomorrow</h1>
20
+ <p class="text-xl md:text-2xl max-w-3xl mx-auto mb-10">Expert construction and technology solutions for commercial and industrial projects</p>
21
  <div class="flex flex-col sm:flex-row justify-center gap-4">
22
  <a href="#contact" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Get Free Consultation</a>
23
  <a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300">Our Services</a>
 
29
  <section id="services" class="py-20 bg-gray-50">
30
  <div class="container mx-auto px-4">
31
  <div class="text-center mb-16">
32
+ <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Our Specialized Services</h2>
33
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive solutions for construction and technology infrastructure</p>
34
  </div>
35
 
36
  <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
37
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
38
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
39
+ <i data-feather="hard-hat" class="text-amber-600 w-8 h-8"></i>
40
  </div>
41
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Commercial Construction</h3>
42
+ <p class="text-gray-600 mb-6">End-to-end commercial building construction with project management and quality assurance.</p>
43
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
44
  </div>
45
 
46
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
47
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
48
+ <i data-feather="server" class="text-amber-600 w-8 h-8"></i>
49
  </div>
50
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Data Center Infrastructure</h3>
51
+ <p class="text-gray-600 mb-6">Design and build mission-critical data center facilities with redundant systems.</p>
52
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
53
  </div>
54
 
55
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
56
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
57
+ <i data-feather="wifi" class="text-amber-600 w-8 h-8"></i>
58
  </div>
59
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Network Infrastructure</h3>
60
+ <p class="text-gray-600 mb-6">Structured cabling, fiber optic installation, and wireless network deployment.</p>
61
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
62
  </div>
63
 
64
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
65
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
66
+ <i data-feather="home" class="text-amber-600 w-8 h-8"></i>
67
  </div>
68
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Industrial Facilities</h3>
69
+ <p class="text-gray-600 mb-6">Specialized construction for manufacturing plants, warehouses, and processing facilities.</p>
70
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
71
  </div>
72
 
73
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
74
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
75
+ <i data-feather="cpu" class="text-amber-600 w-8 h-8"></i>
76
  </div>
77
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Smart Building Systems</h3>
78
+ <p class="text-gray-600 mb-6">Integration of IoT, automation, and building management systems.</p>
79
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
80
  </div>
81
 
82
  <div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300 border-t-4 border-amber-500">
83
  <div class="w-16 h-16 bg-amber-100 rounded-full flex items-center justify-center mb-6">
84
+ <i data-feather="tool" class="text-amber-600 w-8 h-8"></i>
85
  </div>
86
+ <h3 class="text-2xl font-bold text-gray-900 mb-4">Maintenance & Support</h3>
87
+ <p class="text-gray-600 mb-6">Ongoing maintenance, upgrades, and 24/7 technical support for all systems.</p>
88
  <a href="#" class="text-amber-600 font-semibold flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
89
  </div>
90
  </div>
 
96
  <div class="container mx-auto px-4">
97
  <div class="flex flex-col lg:flex-row items-center gap-12">
98
  <div class="lg:w-1/2">
99
+ <img src="http://static.photos/construction/1200x630/42" alt="Construction project" class="rounded-xl shadow-lg">
100
  </div>
101
  <div class="lg:w-1/2">
102
+ <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-6">Why Choose ConstructionTech</h2>
103
+ <p class="text-gray-600 text-lg mb-8">With over 15 years of experience, we combine construction expertise with cutting-edge technology to deliver projects on time and within budget.</p>
104
 
105
  <div class="space-y-6">
106
  <div class="flex items-start">
 
110
  </div>
111
  </div>
112
  <div class="ml-4">
113
+ <h3 class="text-xl font-bold text-gray-900">Certified Professionals</h3>
114
+ <p class="text-gray-600 mt-2">Licensed contractors and certified technicians with industry expertise</p>
115
  </div>
116
  </div>
117
 
 
122
  </div>
123
  </div>
124
  <div class="ml-4">
125
+ <h3 class="text-xl font-bold text-gray-900">Quality Assurance</h3>
126
+ <p class="text-gray-600 mt-2">Rigorous quality control processes and safety standards compliance</p>
127
  </div>
128
  </div>
129
 
 
134
  </div>
135
  </div>
136
  <div class="ml-4">
137
+ <h3 class="text-xl font-bold text-gray-900">End-to-End Solutions</h3>
138
+ <p class="text-gray-600 mt-2">From planning to completion, we manage all aspects of your project</p>
139
  </div>
140
  </div>
141
  </div>
 
144
  </div>
145
  </section>
146
 
147
+ <!-- Projects -->
148
  <section class="py-20 bg-gray-50">
149
  <div class="container mx-auto px-4">
150
  <div class="text-center mb-16">
151
+ <h2 class="text-3xl md:text-4xl font-playfair font-bold text-gray-900 mb-4">Recent Projects</h2>
152
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Showcasing our expertise in construction and technology infrastructure</p>
153
  </div>
154
 
155
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
156
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
157
+ <img src="http://static.photos/industry/640x360/123" alt="Data Center" class="w-full h-48 object-cover">
158
+ <div class="p-6">
159
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Enterprise Data Center</h3>
160
+ <p class="text-gray-600 mb-4">25,000 sq ft facility with redundant power and cooling systems</p>
161
+ <div class="flex flex-wrap gap-2">
162
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Data Center</span>
163
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Infrastructure</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  </div>
165
  </div>
166
  </div>
167
 
168
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
169
+ <img src="http://static.photos/cityscape/640x360/456" alt="Office Building" class="w-full h-48 object-cover">
170
+ <div class="p-6">
171
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Corporate Headquarters</h3>
172
+ <p class="text-gray-600 mb-4">15-story office building with smart building automation</p>
173
+ <div class="flex flex-wrap gap-2">
174
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Commercial</span>
175
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Smart Building</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
176
  </div>
177
  </div>
178
  </div>
179
 
180
+ <div class="bg-white rounded-xl shadow-lg overflow-hidden">
181
+ <img src="http://static.photos/industry/640x360/789" alt="Manufacturing Plant" class="w-full h-48 object-cover">
182
+ <div class="p-6">
183
+ <h3 class="text-xl font-bold text-gray-900 mb-2">Automotive Manufacturing</h3>
184
+ <p class="text-gray-600 mb-4">500,000 sq ft assembly plant with specialized infrastructure</p>
185
+ <div class="flex flex-wrap gap-2">
186
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Industrial</span>
187
+ <span class="bg-amber-100 text-amber-800 text-xs px-2 py-1 rounded">Process Systems</span>
 
 
 
 
 
 
 
 
 
 
 
 
 
188
  </div>
189
  </div>
190
  </div>
 
195
  <!-- Contact CTA -->
196
  <section id="contact" class="py-20 bg-gradient-to-r from-blue-900 to-indigo-900 text-white">
197
  <div class="container mx-auto px-4 text-center">
198
+ <h2 class="text-3xl md:text-4xl font-playfair font-bold mb-6">Ready to Start Your Project?</h2>
199
+ <p class="text-xl max-w-3xl mx-auto mb-10">Contact us today for a free consultation and project assessment</p>
200
  <div class="flex flex-col sm:flex-row justify-center gap-4">
201
  <a href="tel:+11234567890" class="bg-amber-500 hover:bg-amber-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
202
  <i data-feather="phone" class="mr-2"></i> Call Now
203
  </a>
204
+ <a href="mailto:info@constructiontech.com" class="bg-transparent border-2 border-white hover:bg-white hover:text-indigo-900 text-white font-bold py-3 px-8 rounded-lg transition duration-300 flex items-center justify-center">
205
  <i data-feather="mail" class="mr-2"></i> Email Us
206
  </a>
207
  </div>
 
217
  <script>
218
  feather.replace();
219
  </script>
 
220
  </body>
221
  </html>
script.js CHANGED
@@ -1,20 +1,21 @@
1
  // Mobile menu toggle
2
  document.addEventListener('DOMContentLoaded', function() {
3
- const mobileMenuButton = document.getElementById('mobile-menu-button');
4
- const mobileMenu = document.getElementById('mobile-menu');
5
-
6
- if (mobileMenuButton && mobileMenu) {
7
- mobileMenuButton.addEventListener('click', function() {
8
- mobileMenu.classList.toggle('hidden');
9
- });
10
- }
11
-
12
  // Close mobile menu when clicking outside
13
  document.addEventListener('click', function(event) {
14
- if (mobileMenu && !mobileMenu.contains(event.target) &&
15
- mobileMenuButton && !mobileMenuButton.contains(event.target)) {
16
- mobileMenu.classList.add('hidden');
17
- }
 
 
 
 
 
 
 
 
 
 
18
  });
19
  });
20
 
@@ -34,4 +35,8 @@ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
34
  });
35
 
36
  // Feather icons initialization
37
- feather.replace();
 
 
 
 
 
1
  // Mobile menu toggle
2
  document.addEventListener('DOMContentLoaded', function() {
 
 
 
 
 
 
 
 
 
3
  // Close mobile menu when clicking outside
4
  document.addEventListener('click', function(event) {
5
+ const mobileMenus = document.querySelectorAll('.mobile-menu');
6
+ const mobileButtons = document.querySelectorAll('.mobile-menu-button');
7
+
8
+ mobileMenus.forEach(menu => {
9
+ const button = Array.from(mobileButtons).find(btn =>
10
+ btn.getRootNode() === menu.getRootNode()
11
+ );
12
+
13
+ if (menu.classList.contains('active') &&
14
+ !menu.contains(event.target) &&
15
+ button && !button.contains(event.target)) {
16
+ menu.classList.remove('active');
17
+ }
18
+ });
19
  });
20
  });
21
 
 
35
  });
36
 
37
  // Feather icons initialization
38
+ document.addEventListener('DOMContentLoaded', function() {
39
+ if (typeof feather !== 'undefined') {
40
+ feather.replace();
41
+ }
42
+ });