-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathabout.html
More file actions
1299 lines (1126 loc) · 45.7 KB
/
Copy pathabout.html
File metadata and controls
1299 lines (1126 loc) · 45.7 KB
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
- primary meta tags
-->
<title>603 The Coworking Space</title>
<meta name="title" content="603 The Coworking Space" />
<!--
- favicon
-->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon/favicon-16x16.png" />
<link rel="manifest" href="./assets/favicon/site.webmanifest" />
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="stylesheet" href="./styles.css" />
<!--
- preload images
-->
<link rel="preload" as="image" href="./assets/images/sunmill-loc_batcheditor_fotor (1).avif" />
<!-- <link rel="preload" as="image" href="./assets/images/sunshine-loc.png">
<link rel="preload" as="image" href="./assets/images/heroLocation.png"> -->
<!--
- Font Awesome
-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"
integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg=="
crossorigin="anonymous" referrerpolicy="no-referrer" /> <!--
- Ionic Icons CDN
-->
<script type="module" src="https://cdn.jsdelivr.net/npm/ionicons@6.0.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/ionicons@6.0.0/dist/ionicons/ionicons.js"></script>
</head>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&family=Forum&display=swap" rel="stylesheet" />
<style>
/* Scroll Progress Bar */
.scroll-watcher {
height: 10px;
position: fixed;
top: 0;
z-index: 1000;
width: 100%;
border-radius: 1rem;
scale: 0 1;
animation: scroll-watcher ease-in;
background-color: var(--gold-crayola-dark);
animation-timeline: scroll();
}
@keyframes scroll-watcher {
to {
scale: 1 1;
}
}
/* Enhanced Mission Section */
.mission-section {
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
position: relative;
overflow: hidden;
}
.mission-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle, #212121 15%, transparent 16%), radial-gradient(circle, #212121 15%, transparent 16%);
background-position: 0 0, 10px 10px;
background-size: 20px 20px;
opacity: 0.3;
}
/* Enhanced Team Section */
.team-section {
background: linear-gradient(135deg, #1a1a1a 0%, #212121 50%, #1a1a1a 100%);
position: relative;
}
.team-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('./assets/images/fae955e3-de29-4d6b-a41a-85563f86a931.avif') center/cover;
opacity: 0.05;
z-index: -1;
}
/* Enhanced Contact Section */
.contact-section {
background: linear-gradient(135deg, #212121 0%, #2e3033 50%, #212121 100%);
position: relative;
}
.contact-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to right, rgba(247, 177, 14, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(247, 177, 14, 0.1) 1px, transparent 1px);
background-size: 120px 120px;
opacity: 0.5;
}
/* Enhanced Hero Heading */
.hero-heading {
background: linear-gradient(45deg, #d29f46, #f7b10e, #d29f46);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: none;
-webkit-text-stroke: 1px rgba(210, 159, 70, 0.3);
}
/* Enhanced Team Heading */
.team-section-heading {
background: linear-gradient(45deg, #d29f46, #f7b10e, #d29f46);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: none;
border-color: rgba(210, 159, 70, 0.5);
}
/* Enhanced Contact Heading */
.contact-heading {
background: linear-gradient(45deg, #d29f46, #f7b10e, #d29f46);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: none;
}
/* Enhanced Team Cards */
.team {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.team::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.5s ease;
}
.team:hover::before {
left: 100%;
}
.team:hover {
transform: translateY(-10px);
border-color: var(--gold-crayola);
box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}
/* Enhanced Team Images */
.team-img {
border: 2px solid var(--gold-crayola);
transition: all 0.3s ease;
border-radius: 50%;
background: linear-gradient(45deg, rgba(210, 159, 70, 0.1), rgba(247, 177, 14, 0.1));
}
.team:hover .team-img {
transform: scale(1.1);
box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}
/* Enhanced Contact Div */
.contact-div {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.contact-div::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
transition: left 0.5s ease;
}
.contact-div:hover::before {
left: 100%;
}
.contact-div:hover {
transform: translateY(-5px);
border-color: var(--gold-crayola);
box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}
/* Enhanced Buttons */
.btn {
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: left 0.5s ease;
}
.btn:hover::before {
left: 100%;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}
/* Enhanced Content */
.content {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
padding: 2rem;
position: relative;
z-index: 2;
}
/* Enhanced Collage */
.collage-container {
position: relative;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.collage-hero {
transition: all 0.3s ease;
}
.collage-container:hover .collage-hero {
transform: scale(1.05);
}
/* Floating Elements */
.floating-element {
position: absolute;
opacity: 0.1;
animation: float 6s ease-in-out infinite;
z-index: 1;
}
.floating-element:nth-child(1) {
top: 20%;
left: 10%;
animation-delay: 0s;
}
.floating-element:nth-child(2) {
top: 60%;
right: 15%;
animation-delay: 2s;
}
.floating-element:nth-child(3) {
bottom: 30%;
left: 20%;
animation-delay: 4s;
}
@keyframes float {
0%,
100% {
transform: translateY(0px) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
}
/* Enhanced Footer */
.footer {
background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
position: relative;
}
.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url('./assets/images/fae955e3-de29-4d6b-a41a-85563f86a931.avif') center/cover;
opacity: 0.1;
z-index: -1;
}
</style>
<body id="top">
<!-- Scroll Progress Bar -->
<div class="scroll-watcher"></div>
<!--
- #PRELOADER
-->
<div class="preload" data-preaload>
<div class="circle"></div>
<p class="text">603</p>
</div>
<!--
- #TOP BAR
-->
<div class="topbar">
<div class="container">
<address class="topbar-item">
<div class="icon">
<ion-icon name="location-outline" aria-hidden="true"></ion-icon>
</div>
<span class="span">
Makhija Arcade, 35th Rd, Khar, Khar West, Mumbai, Maharashtra 400052
</span>
</address>
<div class="separator"></div>
<div class="topbar-item item-2">
<div class="icon">
<ion-icon name="time-outline" aria-hidden="true"></ion-icon>
</div>
<span class="span">Daily : 8.00 am to 10.00 pm</span>
</div>
<a href="tel:+11234567890" class="topbar-item link">
<div class="icon">
<ion-icon name="call-outline" aria-hidden="true"></ion-icon>
</div>
<span class="span"> +91 9136036603</span>
</a>
<div class="separator"></div>
<a href="mailto:
sales@603thecoworkingspace.com" class="topbar-item link">
<div class="icon">
<ion-icon name="mail-outline" aria-hidden="true"></ion-icon>
</div>
<span class="span"> sales@603thecoworkingspace.com</span>
</a>
</div>
</div>
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="index.html#" class="logo">
<img src="./assets/images/603logo (1).avif" width="160" height="50" alt="Grilli - Home" />
</a>
<nav class="navbar" data-navbar>
<button class="close-btn scale-up" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
<a href="index.html#" class="logo">
<img src="./assets/images/603logo (1).avif" width="160" height="50" alt="Grilli - Home" />
</a>
<ul class="navbar-list">
<li class="navbar-item">
<a href="index.html#home" class="navbar-link hover-underline active">
<div class="separator"></div>
<span class="span">Home</span>
</a>
</li>
<li class="navbar-item">
<a href="blogpost4.html" class="navbar-link hover-underline">
<div class="separator"></div>
<span class="span">Spaces</span>
</a>
</li>
<li class="navbar-item">
<a href="about.html" class="navbar-link hover-underline">
<div class="separator"></div>
<span class="span">About Us</span>
</a>
</li>
<li class="navbar-item">
<a href="index.html#images" class="navbar-link hover-underline">
<div class="separator"></div>
<span class="span">Images</span>
</a>
</li>
<li class="navbar-item">
<a href="blogs.html" class="navbar-link hover-underline">
<div class="separator"></div>
<span class="span">Blogs</span>
</a>
</li>
<li class="navbar-item">
<a href="contact.html" class="navbar-link hover-underline">
<div class="separator"></div>
<span class="span">Contact</span>
</a>
</li>
</ul>
<div class="text-center">
<p class="headline-1 navbar-title">Visit Us</p>
<address class="body-4">
Restaurant St, Delicious City, <br />
London 9578, UK
</address>
<p class="body-4 navbar-text">Open: 9.30 am - 2.30pm</p>
<a href="mailto:booking@grilli.com" class="body-4 sidebar-link">booking@grilli.com</a>
<div class="separator"></div>
<p class="contact-label">Booking Request</p>
<a href="tel:+88123123456" class="body-1 contact-number hover-underline">
+88-123-123456
</a>
</div>
</nav>
<a href="indexLayout.html" class="btn btn-secondary scale-up">
<span class="text text-1">Make Your Space</span>
<span class="text text-2" aria-hidden="true">Make Your Space</span>
</a>
<button class="nav-open-btn scale-up" aria-label="open menu" data-nav-toggler>
<span class="line line-1"></span>
<span class="line line-2"></span>
<span class="line line-3"></span>
</button>
</div>
</header>
<!-- Floating Elements -->
<div class="floating-element">
<img src="./assets/images/separator.svg" alt="" width="50" height="50">
</div>
<div class="floating-element">
<img src="./assets/images/img-pattern.svg" alt="" width="60" height="60">
</div>
<div class="floating-element">
<img src="./assets/images/badge-2.png" alt="" width="40" height="40">
</div>
<main>
<!-- Hero/Mission Section -->
<section class="hero text-center mission-section">
<div class="grid container">
<div class="text-center collage-div">
<h1 class="hero-heading">
Our Mission
<img src="assets/images/separator.svg" alt="" class="seperator-img" />
</h1>
<div class="collage-container">
<img src="assets/images/benjamin-child-0sT9YhNgSEs-unsplash.avif" alt="" class="collage-hero" />
<img src="assets/images/603logo (1).avif" alt="" class="collage-highlight" />
</div>
</div>
<div class="container content-div">
<div class="content-border-div">
<img src="assets/images/blob.svg" alt="" class="content-border-blob" />
<img src="assets/images/blob2.svg" alt="" class="content-border-blob2" />
</div>
<p class="content">
At 603 The Coworking Space, our mission is to revolutionize the way people work by creating dynamic,
collaborative environments that foster innovation, productivity, and community. We believe that great ideas
flourish when passionate professionals come together in thoughtfully designed spaces. Our commitment extends
beyond providing desks and meeting rooms – we cultivate an ecosystem where entrepreneurs, freelancers,
startups, and established businesses can thrive, network, and grow together. Through flexible workspace
solutions, cutting-edge technology, and a vibrant community culture, we empower our members to achieve their
professional goals while maintaining the perfect work-life balance.
</p>
</div>
</div>
</section>
<!-- About Us Values Section -->
<section class="section text-center"
style="background: linear-gradient(135deg, #1a1a1a 0%, #2e3033 50%, #1a1a1a 100%); padding: 6rem 0; position: relative;">
<div
style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle, #212121 15%, transparent 16%), radial-gradient(circle, #212121 15%, transparent 16%); background-position: 0 0, 10px 10px; background-size: 20px 20px; opacity: 0.3;">
</div>
<div class="container" style="position: relative; z-index: 2;">
<h2 style="font-size: 4rem; color: #d29f46; margin-bottom: 3rem; text-align: center;">Why Choose 603?</h2>
<div
style="display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem;">
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-users" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Vibrant Community</h3>
<p style="color: #ccc; line-height: 1.6;">Connect with like-minded professionals, entrepreneurs, and
innovators. Our community events, networking sessions, and collaborative spaces foster meaningful business
relationships and friendships.</p>
</div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-wifi" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Premium Amenities</h3>
<p style="color: #ccc; line-height: 1.6;">High-speed internet, modern meeting rooms, printing facilities,
complimentary beverages, and 24/7 access. Everything you need to work efficiently and comfortably.</p>
</div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-map-marker-alt" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Prime Location</h3>
<p style="color: #ccc; line-height: 1.6;">Located in the heart of Khar West, Mumbai, with excellent
connectivity to public transport, restaurants, and business districts. Your perfect work-life balance
destination.</p>
</div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-clock" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Flexible Plans</h3>
<p style="color: #ccc; line-height: 1.6;">From hot desks to private offices, daily passes to monthly
memberships. Choose what works best for your business needs and budget.</p>
</div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-lightbulb" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Innovation Hub</h3>
<p style="color: #ccc; line-height: 1.6;">Regular workshops, mentorship programs, and startup events. We're
not just a workspace – we're a launchpad for your business growth and professional development.</p>
</div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 2rem; text-align: center; transition: all 0.3s ease;">
<div
style="width: 80px; height: 80px; background: linear-gradient(45deg, #d29f46, #f7b10e); border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-shield-alt" style="font-size: 2rem; color: white;"></i>
</div>
<h3 style="color: #f7b10e; margin-bottom: 1rem; font-size: 1.5rem;">Safe & Secure</h3>
<p style="color: #ccc; line-height: 1.6;">24/7 security, CCTV monitoring, secure access cards, and regular
sanitization. Your safety and peace of mind are our top priorities.</p>
</div>
</div>
<div style="text-align: center; margin-top: 3rem;">
<a href="contact.html"
style="display: inline-block; background: linear-gradient(45deg, #d29f46, #f7b10e); color: white; padding: 1rem 2rem; border-radius: 50px; text-decoration: none; font-weight: bold; transition: all 0.3s ease; box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);">
Join Our Community Today
</a>
</div>
</div>
</section>
<style>
.mission-section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-image: radial-gradient(circle,
#212121 15%,
transparent 16%),
radial-gradient(circle, #212121 15%, transparent 16%);
background-position: 0 0, 10px 10px;
background-size: 20px 20px;
}
.grid {
display: grid;
grid-template-columns: 1fr;
}
@media (min-width: 600px) {
.grid {
grid-template-columns: repeat(1, 1fr);
width: 95vw;
}
.content-border-div {
visibility: hidden;
}
}
.content-border-div {
visibility: hidden;
}
@media (min-width: 900px) {
.grid {
grid-template-columns: repeat(1, 1fr);
width: 95vw;
}
}
@media (min-width: 1200px) {
.grid {
grid-template-columns: repeat(2, 1fr);
padding-bottom: 0;
width: 88vw;
}
.content-border-div {
visibility: visible;
}
}
.collage-container {
width: 100%;
}
.collage-div {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.hero-heading {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: auto;
font-size: 7.5rem;
line-height: 1em;
color: #d29f46;
text-shadow: 1px 0px 0px hsl(38, 61%, 50%),
4px 0px 0px hsl(38, 61%, 45%), 3px 0px 0px hsl(38, 61%, 40%),
5px 0px 0px hsl(38, 61%, 35%), 5px 0px 0px hsl(38, 61%, 30%),
6px 0px 0px hsl(38, 61%, 25%);
-webkit-text-stroke: 1px white;
}
.seperator-img {
width: 40%;
height: auto;
}
.collage-container {
position: relative;
}
.collage-hero {
width: 100%;
height: auto;
mask-image: url("assets/images/603logo\ \(1\).avif"),
linear-gradient(transparent 0 0);
mask-position: center;
mask-size: contain;
mask-repeat: no-repeat;
}
.collage-highlight {
position: absolute;
z-index: -1;
top: 50%;
left: 50%;
width: 100%;
height: auto;
transform: translate(-50%, -50%) scale(1.05);
}
.content-div {
display: flex;
justify-content: center;
align-items: center;
position: relative;
}
.content-border-div {
position: absolute;
height: 80%;
aspect-ratio: 1;
border: 0.5em solid hsl(42, 94%, 51%);
border-radius: 20% 10% 20% 10%;
animation: rotate360 linear 10s infinite;
z-index: -1;
}
.content-border-blob {
position: fixed;
height: 60%;
width: 60%;
top: 0;
left: 80%;
}
.content-border-blob2 {
position: fixed;
height: 60%;
width: 60%;
bottom: -20%;
right: 80%;
}
.content {
font-weight: 500;
line-height: 1em;
padding: 1em;
}
</style>
<!-- Our Story Section -->
<section class="section text-center"
style="background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); padding: 6rem 0; position: relative;">
<div
style="position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('./assets/images/fae955e3-de29-4d6b-a41a-85563f86a931.avif') center/cover; opacity: 0.05; z-index: -1;">
</div>
<div class="container" style="position: relative; z-index: 2; max-width: 800px;">
<h2 style="font-size: 4rem; color: #d29f46; margin-bottom: 2rem; text-align: center;">Our Story</h2>
<div style="width: 100px; height: 2px; background: #f7b10e; margin: 0 auto 3rem;"></div>
<div
style="background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 3rem; text-align: left;">
<p style="color: #ccc; line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem;">
Founded in 2020 in the vibrant neighborhood of Khar West, Mumbai, <strong style="color: #f7b10e;">603 The
Coworking Space</strong> was born from a simple yet powerful vision: to create a workspace that feels like
home while fostering professional growth and meaningful connections.
</p>
<p style="color: #ccc; line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem;">
What started as a small shared office has evolved into Mumbai's most beloved coworking community. We've
witnessed countless success stories – from solo entrepreneurs launching their first startups to established
companies expanding their teams. Our members have raised funding, formed partnerships, and built lasting
friendships within our walls.
</p>
<p style="color: #ccc; line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem;">
Today, 603 stands as more than just a workspace. We're a catalyst for innovation, a hub for collaboration,
and a second home for Mumbai's most ambitious professionals. Our commitment to excellence, community, and
growth continues to drive everything we do.
</p>
<div style="text-align: center; margin-top: 2rem;">
<div
style="display: inline-flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;">
<div style="text-align: center;">
<div style="font-size: 2.5rem; font-weight: bold; color: #f7b10e;">500+</div>
<div style="color: #ccc; font-size: 0.9rem;">Happy Members</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2.5rem; font-weight: bold; color: #f7b10e;">50+</div>
<div style="color: #ccc; font-size: 0.9rem;">Startups Launched</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2.5rem; font-weight: bold; color: #f7b10e;">100+</div>
<div style="color: #ccc; font-size: 0.9rem;">Events Hosted</div>
</div>
<div style="text-align: center;">
<div style="font-size: 2.5rem; font-weight: bold; color: #f7b10e;">24/7</div>
<div style="color: #ccc; font-size: 0.9rem;">Access Available</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section class="section text-center team-section">
<div class="team-curve-top">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill"></path>
</svg>
</div>
<div class="team-container">
<div class="team-section-heading-div container">
<div class="separator"></div>
<h1 class="team-section-heading">Our Team</h1>
<div class="separator"></div>
</div>
<div class="team-div">
<div class="container team">
<h3>Founder & CEO</h3>
<img src="assets/images/founder.png" alt="Rajesh Sharma - Founder & CEO" class="team-img" />
<p class="container team-description">
<b>Rajesh Sharma</b> is the visionary founder of 603 The Coworking Space, bringing over 15 years of
experience in real estate development and community building. With a passion for creating spaces that
inspire collaboration and innovation, Rajesh has transformed the coworking landscape in Mumbai. His
leadership philosophy centers on fostering genuine connections between members while maintaining
operational excellence. Under his guidance, 603 has become more than just a workspace – it's a thriving
community where ideas come to life and businesses flourish.
</p>
</div>
</div>
<div class="grid">
<div class="container team">
<h3>Community Manager</h3>
<img
src="https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTZ8fHByb2ZpbGUlMjBwaWN0dXJlfGVufDB8fDB8fHww"
alt="Priya Mehta - Community Manager" class="team-img" />
<p class="container team-description">
<b>Priya Mehta</b> is the heart of our community, dedicated to creating meaningful connections between our
diverse members. With a background in event management and business development, she orchestrates
networking events, workshops, and collaborative initiatives that bring our coworking family together.
Priya's warm personality and strategic approach to community building ensure that every member feels
welcomed, supported, and connected to opportunities for growth. Her passion for fostering professional
relationships has made 603 a hub for innovation and collaboration in Mumbai's business ecosystem.
</p>
</div>
<div class="container team">
<h3>Operations Director</h3>
<img
src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8cHJvZmlsZXxlbnwwfHwwfHx8MA%3D%3D"
alt="Anita Gupta - Operations Director" class="team-img" />
<p class="container team-description">
With a keen eye for aesthetics and a passion for innovative
design, <b>Anita Gupta</b> is the operations expert behind our studio’s
distinctive style. They expertly balance form and function,
working closely with clients to bring personalized, stunning
spaces to life. Their attention to detail and artistic intuition
make each project unique and memorable.
</p>
</div>
</div>
</div>
<div class="team-curve-bottom">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path
d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z"
class="shape-fill"></path>
</svg>
</div>
</section>
<style>
.team-curve-top {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
}
.team-curve-top svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 100px;
}
.team-curve-top .shape-fill {
fill: #161718;
}
.team-section {
background-color: #212121;
}
.team-section-heading-div {
margin-bottom: 16px;
}
.team-section-heading {
font-size: 5.5rem;
line-height: 1em;
padding: 16px 0 16px 0;
color: hsl(38, 61%, 50%);
border-top: 1px solid hsl(42, 94%, 51%);
border-bottom: 1px solid hsl(42, 94%, 51%);
margin: 16px 0 16px 0;
}
.team-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.team-container .container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.team {
background-image: url("assets/images/team.svg");
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
}
.team-container .container h3 {
margin-bottom: 16px;
font-size: 2.5rem;
color: hsl(38, 61%, 45%);
}
.team-div {
display: flex;
justify-content: space-around;
align-items: center;
}
.team-img {
max-width: 100px;
height: auto;
border: 1px double hsl(42, 94%, 51%);
background-image: url("assets/images/blob.svg");
background-repeat: no-repeat;