-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzaima.html
More file actions
1130 lines (1023 loc) · 54.8 KB
/
Copy pathzaima.html
File metadata and controls
1130 lines (1023 loc) · 54.8 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
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Surajit Singha Sisir | Visual Editor</title>
<!-- Fonts: Playfair Display (Editorial) & Inter (Modern UI) -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap"
rel="stylesheet">
<!-- Icons: Phosphor Icons (Clean, Modern) -->
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
bg: '#0B0F14',
surface: '#0F1621',
textMain: '#F5F7FA',
textMuted: '#AAB0BC',
accentTeal: '#5EEAD4',
accentViolet: '#8B5CF6',
gradient: 'linear-gradient(90deg, #5EEAD4, #8B5CF6)'
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Playfair Display', 'serif'],
},
backgroundImage: {
'editorial-gradient': 'linear-gradient(90deg, #5EEAD4, #8B5CF6)',
}
}
}
}
</script>
<!-- CSS Reset & Custom Styles -->
<style>
/* Base & Reset */
body {
background-color: #0B0F14;
color: #F5F7FA;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #0B0F14;
}
::-webkit-scrollbar-thumb {
background: #1f2937;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #374151;
}
/* Grain Effect Overlay */
.grain-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 50;
opacity: 0.05;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
/* Utility Classes */
.clip-text-gradient {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-image: linear-gradient(90deg, #5EEAD4, #8B5CF6);
}
.hover-underline-animation {
display: inline-block;
position: relative;
}
.hover-underline-animation::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 1px;
bottom: -2px;
left: 0;
background-color: #5EEAD4;
transform-origin: bottom right;
transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.hover-underline-animation:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
}
/* Video Container Aspect Ratios */
.aspect-video-container {
position: relative;
padding-bottom: 56.25%;
/* 16:9 */
height: 0;
overflow: hidden;
}
.aspect-video-container iframe,
.aspect-video-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.aspect-9-16-container {
position: relative;
padding-bottom: 177.77%;
/* 9:16 */
height: 0;
overflow: hidden;
}
.aspect-9-16-container iframe,
.aspect-9-16-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
/* Swiper Customization */
.swiper {
width: 100%;
padding-bottom: 50px;
}
.swiper-slide {
height: auto;
}
.swiper-pagination-bullet {
background: #374151;
width: 6px;
height: 6px;
opacity: 1;
transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
background: #5EEAD4;
width: 12px;
border-radius: 2px;
}
/* Plyr Customization (Dark Mode) */
.plyr {
background: #000 !important;
border-radius: 0 !important;
box-shadow: none !important;
}
.plyr__controls {
background: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(4px);
}
.plyr__control--overlaid {
background: rgba(0, 0, 0, 0.5);
}
/* Navigation Transition */
.nav-link {
position: relative;
}
.nav-link::before {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0%;
height: 1px;
background: #8B5CF6;
transition: width 0.3s ease;
}
.nav-link:hover::before {
width: 100%;
}
/* Loader */
#loader {
position: fixed;
inset: 0;
background: #0B0F14;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
transition: opacity 0.8s ease-out;
}
.loader-line {
width: 0%;
height: 1px;
background: #5EEAD4;
transition: width 1.5s ease-in-out;
}
</style>
</head>
<body class="antialiased selection:bg-accentTeal selection:text-bg">
<!-- Grain Overlay -->
<div class="grain-overlay"></div>
<!-- Preloader -->
<div id="loader">
<div class="w-64">
<div class="text-xs font-sans text-accentTeal tracking-[0.3em] mb-2 opacity-0" id="loader-text">SURAJIT
SINGHA
SISIR</div>
<div class="w-full bg-surface h-[1px]">
<div class="loader-line" id="loader-bar"></div>
</div>
</div>
</div>
<!-- Navigation -->
<nav class="fixed top-0 w-full z-40 bg-bg/80 backdrop-blur-md border-b border-white/5 transition-all duration-300"
id="navbar">
<div class="max-w-7xl mx-auto px-6 h-20 flex items-center justify-between">
<!-- Logo -->
<a href="#" class="group">
<div class="w-10 h-10 bg-white rounded-sm overflow-hidden relative">
<!-- Placeholder for logo.png -->
<div
class="absolute inset-0 bg-surface group-hover:bg-accentTeal transition-colors duration-500 flex items-center justify-center">
<span class="text-xs font-bold tracking-widest text-white">SSS</span>
</div>
</div>
</a>
<!-- Desktop Menu -->
<div class="hidden md:flex items-center space-x-12">
<a href="#about"
class="nav-link text-sm font-sans text-textMuted hover:text-textMain transition-colors uppercase tracking-widest">About</a>
<a href="#work"
class="nav-link text-sm font-sans text-textMuted hover:text-textMain transition-colors uppercase tracking-widest">Work</a>
<a href="#pricing"
class="nav-link text-sm font-sans text-textMuted hover:text-textMain transition-colors uppercase tracking-widest">Pricing</a>
<a href="#contact"
class="text-sm font-sans text-accentTeal hover:text-accentViolet transition-colors uppercase tracking-widest border border-accentTeal/30 px-6 py-2 hover:bg-accentTeal/10">Contact</a>
</div>
<!-- Mobile Menu Button -->
<button id="menu-btn" class="md:hidden text-textMain focus:outline-none">
<i class="ph ph-list text-2xl"></i>
</button>
</div>
</nav>
<!-- Mobile Menu Overlay -->
<div id="mobile-menu"
class="fixed inset-0 bg-bg z-30 transform translate-x-full transition-transform duration-500 flex flex-col justify-center items-center space-y-8 md:hidden">
<button id="close-menu" class="absolute top-6 right-6 text-textMuted hover:text-textMain">
<i class="ph ph-x text-3xl"></i>
</button>
<a href="#about"
class="mobile-link text-3xl md:text-5xl font-serif text-textMain hover:text-accentTeal transition-colors">About</a>
<a href="#work"
class="mobile-link text-3xl md:text-5xl font-serif text-textMain hover:text-accentTeal transition-colors">Work</a>
<a href="#pricing"
class="mobile-link text-3xl md:text-5xl font-serif text-textMain hover:text-accentTeal transition-colors">Pricing</a>
<a href="#contact"
class="mobile-link text-3xl md:text-5xl font-serif text-textMain hover:text-accentTeal transition-colors">Contact</a>
</div>
<!-- MAIN CONTENT -->
<main class="relative z-10">
<!-- 1. HERO SECTION -->
<section class="relative h-screen w-full overflow-hidden flex items-center justify-center" id="hero">
<!-- Background Video (Cinematic Still) -->
<div class="absolute inset-0 z-0 opacity-60">
<img src="images/1.jpg" alt="Cinematic Background" class="w-full h-full object-cover" id="hero-bg">
<div class="absolute inset-0 bg-gradient-to-r from-bg via-bg/80 to-transparent"></div>
</div>
<div class="container mx-auto px-6 relative z-10 grid grid-cols-1 md:grid-cols-12 h-full items-center">
<!-- Left: Typography -->
<div class="md:col-span-7 lg:col-span-8 flex flex-col justify-center space-y-6">
<div class="overflow-hidden">
<h1 class="text-4xl md:text-6xl lg:text-8xl font-serif leading-[1.1] text-textMain hero-reveal">
Capturing the
</h1>
</div>
<div class="overflow-hidden">
<h1
class="text-4xl md:text-6xl lg:text-8xl font-serif italic leading-[1.1] text-textMain hero-reveal">
Unseen.
</h1>
</div>
<div class="overflow-hidden">
<h1 class="text-4xl md:text-6xl lg:text-8xl font-serif leading-[1.1] text-textMain hero-reveal">
Crafting
</h1>
</div>
<!-- Divider -->
<div class="w-24 h-[1px] bg-gradient-to-r from-accentTeal to-accentViolet mt-8 hero-reveal"></div>
<p class="text-sm md:text-base text-textMuted font-sans max-w-md mt-6 hero-reveal opacity-0">
Visual Storyteller. Photographer. Cinematographer.
</p>
</div>
<!-- Right: Film Strip / Cine Still -->
<div
class="hidden md:block md:col-span-5 lg:col-span-4 relative h-[80vh] w-full ml-auto hero-reveal opacity-0">
<div class="aspect-video-container border border-white/10 shadow-2xl relative">
<img src="images/2.jpg" alt="Film Still" class="w-full h-full object-cover">
<!-- Film Strip Edges -->
<div class="absolute -left-3 top-0 bottom-0 w-3 bg-black border-r border-white/10"></div>
<div class="absolute -right-3 top-0 bottom-0 w-3 bg-black border-l border-white/10"></div>
</div>
<div class="absolute -bottom-4 -left-4 text-xs font-sans text-accentTeal tracking-widest">
EST. 2018
</div>
</div>
</div>
<!-- Scroll Indicator -->
<div
class="absolute bottom-10 left-1/2 transform -translate-x-1/2 flex flex-col items-center space-y-2 opacity-60 animate-bounce">
<span class="text-[10px] uppercase tracking-widest text-textMuted">Scroll</span>
<i class="ph ph-caret-down text-accentTeal"></i>
</div>
</section>
<!-- 2. STATEMENT BLOCK -->
<section class="py-24 px-6 border-y border-white/5 bg-surface">
<div class="max-w-4xl mx-auto text-center">
<i class="ph ph-quotes text-4xl text-accentTeal/50 mb-6 block"></i>
<p class="text-2xl md:text-4xl font-serif italic text-textMain leading-relaxed reveal-text">
"Photography is a way of feeling, of touching, of loving. What you have caught on film is captured
forever...
It remembers little things, long after you have forgotten everything."
</p>
<p class="text-sm font-sans text-textMuted mt-8 uppercase tracking-widest reveal-text">— Aaron Siskind
</p>
</div>
</section>
<!-- 3. ABOUT -->
<section id="about" class="py-32 px-6 md:px-12">
<div class="max-w-7xl mx-auto grid grid-cols-1 md:grid-cols-12 gap-12 md:gap-24 items-center">
<!-- Image -->
<div class="md:col-span-5 relative group reveal-img-container">
<div
class="absolute inset-0 bg-accentViolet/20 transform translate-x-4 translate-y-4 transition-transform duration-700 group-hover:translate-x-2 group-hover:translate-y-2">
</div>
<img src="authors/1.jpg" alt="Surajit Singha Sisir"
class="relative w-full aspect-[3/4] object-cover grayscale group-hover:grayscale-0 transition-all duration-700">
</div>
<!-- Text -->
<div class="md:col-span-7 space-y-8 reveal-text">
<h2 class="text-sm font-sans text-accentTeal tracking-[0.2em] uppercase mb-2">The Artist</h2>
<h3 class="text-4xl md:text-5xl font-serif text-textMain">Surajit Singha Sisir</h3>
<div class="w-20 h-[1px] bg-accentTeal"></div>
<p class="text-lg text-textMuted font-sans leading-relaxed">
I am a visual storyteller based in Los Angeles, dedicated to the craft of photography and
cinematography. My
work bridges the gap between high-fashion editorial aesthetics and raw, documentary truth.
</p>
<p class="text-lg text-textMuted font-sans leading-relaxed">
With over 8 years of experience in the industry, I specialize in creating visual languages that
speak louder
than words. Whether it's a commercial brand film or a personal documentary project, the goal
remains the
same: to evoke emotion through light and composition.
</p>
<div class="pt-8 flex flex-wrap gap-6">
<div class="flex flex-col">
<span class="text-2xl font-serif text-textMain">01</span>
<span class="text-xs text-textMuted uppercase tracking-wider">Photography</span>
</div>
<div class="flex flex-col">
<span class="text-2xl font-serif text-textMain">02</span>
<span class="text-xs text-textMuted uppercase tracking-wider">Cinematography</span>
</div>
<div class="flex flex-col">
<span class="text-2xl font-serif text-textMain">03</span>
<span class="text-xs text-textMuted uppercase tracking-wider">Editing</span>
</div>
</div>
</div>
</div>
</section>
<!-- 4. DISCIPLINES (REIMAGINED) -->
<section class="py-32 px-6 bg-surface">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-end mb-20 border-b border-white/10 pb-8">
<h2 class="text-4xl md:text-6xl font-serif text-textMain">Disciplines</h2>
<p class="text-textMuted font-sans mt-4 md:mt-0 max-w-xs text-right">Specialized services tailored
for brands,
artists, and events.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-y-24 gap-x-12">
<!-- List Item 1 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">01</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Photography</h4>
<p class="text-textMuted mt-2 font-sans">Editorial, commercial, lifestyle, and brand photography
with
cinematic composition.</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
<!-- List Item 2 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">02</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Cinematography
</h4>
<p class="text-textMuted mt-2 font-sans">Cinematic video production for brands, artists, and
commercial
storytelling.</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
<!-- List Item 3 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">03</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Visual Editing
</h4>
<p class="text-textMuted mt-2 font-sans">Color grading, sound design, and narrative editing for
film and
video.</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
<!-- List Item 4 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">04</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Commercial Films
</h4>
<p class="text-textMuted mt-2 font-sans">High-end commercials designed to convert and captivate
audiences.
</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
<!-- List Item 5 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">05</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Vertical Reels
</h4>
<p class="text-textMuted mt-2 font-sans">Optimized for Instagram Reels, TikTok, and Shorts.</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
<!-- List Item 6 -->
<div class="discipline-item group cursor-pointer">
<span
class="text-6xl md:text-8xl font-serif text-white/5 absolute -z-10 group-hover:text-white/10 transition-colors">06</span>
<h4 class="text-2xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Drone Footage
</h4>
<p class="text-textMuted mt-2 font-sans">Aerial cinematography showcasing landscapes and
architecture.</p>
<div
class="w-0 group-hover:w-full h-[1px] bg-accentTeal mt-6 transition-all duration-500 ease-out">
</div>
</div>
</div>
</div>
</section>
<!-- 5. FEATURED FILMS (Swiper) -->
<section id="work" class="py-32 px-6 bg-bg">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl md:text-6xl font-serif text-textMain mb-16 text-center">Selected Works</h2>
<!-- Swiper Container -->
<div class="swiper mySwiper">
<div class="swiper-wrapper">
<!-- Slide 1 -->
<div class="swiper-slide">
<div class="group relative w-full aspect-video-container">
<img src="images/3.jpg" alt="Project 1"
class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity duration-700">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<div class="absolute bottom-0 left-0 p-8 md:p-12">
<span
class="text-accentTeal text-xs tracking-widest uppercase mb-2 block">Cinematography</span>
<h3 class="text-3xl font-serif text-textMain">Neon Nights</h3>
</div>
</div>
</div>
<!-- Slide 2 -->
<div class="swiper-slide">
<div class="group relative w-full aspect-video-container">
<img src="images/4.jpg" alt="Project 2"
class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity duration-700">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<div class="absolute bottom-0 left-0 p-8 md:p-12">
<span
class="text-accentTeal text-xs tracking-widest uppercase mb-2 block">Photography</span>
<h3 class="text-3xl font-serif text-textMain">Urban Solitude</h3>
</div>
</div>
</div>
<!-- Slide 3 -->
<div class="swiper-slide">
<div class="group relative w-full aspect-video-container">
<img src="images/5.jpg" alt="Project 3"
class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity duration-700">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<div class="absolute bottom-0 left-0 p-8 md:p-12">
<span
class="text-accentTeal text-xs tracking-widest uppercase mb-2 block">Commercial</span>
<h3 class="text-3xl font-serif text-textMain">Aura Essence</h3>
</div>
</div>
</div>
<!-- Slide 4 -->
<div class="swiper-slide">
<div class="group relative w-full aspect-video-container">
<img src="images/6.jpg" alt="Project 4"
class="w-full h-full object-cover opacity-80 group-hover:opacity-100 transition-opacity duration-700">
<div
class="absolute inset-0 bg-black/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<div class="absolute bottom-0 left-0 p-8 md:p-12">
<span
class="text-accentTeal text-xs tracking-widest uppercase mb-2 block">Documentary</span>
<h3 class="text-3xl font-serif text-textMain">The Architect</h3>
</div>
</div>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
<!-- 6. VERTICAL REELS (Plyr) -->
<section class="py-32 px-6 bg-surface">
<div class="max-w-7xl mx-auto">
<div class="flex justify-between items-end mb-12">
<h2 class="text-4xl md:text-6xl font-serif text-textMain">Vertical Reels</h2>
<a href="https://www.instagram.com/surajitsinghasisir/" target="_blank"
class="hidden md:flex items-center text-accentTeal hover:text-white transition-colors">
<span class="text-sm uppercase tracking-widest mr-2">View Profile</span>
<i class="ph ph-arrow-right"></i>
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Reel 1 -->
<div class="aspect-9-16-container border border-white/10 rounded-sm overflow-hidden group">
<video controls class="w-full h-full" poster="images/9x16-1.jpg">
<source src="videos/9x16-1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<!-- Reel 2 -->
<div class="aspect-9-16-container border border-white/10 rounded-sm overflow-hidden group">
<video controls class="w-full h-full" poster="images/9x16-2.jpg">
<source src="videos/9x16-2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<!-- Reel 3 -->
<div class="aspect-9-16-container border border-white/10 rounded-sm overflow-hidden group">
<video controls class="w-full h-full" poster="images/9x16-3.jpg">
<source src="videos/9x16-3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<div class="mt-8 text-center md:hidden">
<a href="https://www.instagram.com/surajitsinghasisir/" target="_blank"
class="text-accentTeal text-sm uppercase tracking-widest inline-block">View Profile</a>
</div>
</div>
</section>
<!-- 7. GALLERY (Editorial Grid) -->
<section class="py-32 px-6 bg-bg">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl md:text-6xl font-serif text-textMain mb-20 text-center">Gallery</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-1 md:gap-4">
<!-- Image 1 -->
<div class="group relative overflow-hidden aspect-[4/5] cursor-zoom-in">
<img src="images/7.jpg" alt="Gallery 1"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 grayscale group-hover:grayscale-0">
<div
class="absolute inset-0 bg-accentTeal/10 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
</div>
<!-- Image 2 -->
<div class="group relative overflow-hidden aspect-[3/4] cursor-zoom-in md:mt-12">
<img src="images/9x16-4.jpg" alt="Gallery 2"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 grayscale group-hover:grayscale-0">
<div
class="absolute inset-0 bg-accentTeal/10 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
</div>
<!-- Image 3 -->
<div class="group relative overflow-hidden aspect-[16/9] cursor-zoom-in">
<img src="images/9x16-5.jpg" alt="Gallery 3"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 grayscale group-hover:grayscale-0">
<div
class="absolute inset-0 bg-accentTeal/10 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
</div>
<!-- Image 4 -->
<div class="group relative overflow-hidden aspect-[1/1] cursor-zoom-in">
<img src="images/2.jpg" alt="Gallery 4"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 grayscale group-hover:grayscale-0">
<div
class="absolute inset-0 bg-accentTeal/10 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
</div>
<!-- Image 5 -->
<div class="group relative overflow-hidden aspect-[4/5] cursor-zoom-in">
<img src="images/3.jpg" alt="Gallery 5"
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110 grayscale group-hover:grayscale-0">
<div
class="absolute inset-0 bg-accentTeal/10 opacity-0 group-hover:opacity-100 transition-opacity duration-500">
</div>
</div>
</div>
</div>
</section>
<!-- 8. PRICING SECTION -->
<section id="pricing" class="py-32 px-6 bg-surface">
<div class="max-w-5xl mx-auto">
<div class="text-center mb-20">
<h2 class="text-4xl md:text-6xl font-serif text-textMain">Investment</h2>
<p class="text-textMuted mt-4 font-sans">Transparent pricing for professional visual production.</p>
</div>
<div class="flex flex-col space-y-12">
<!-- Tier 1 -->
<div class="pricing-tier border-b border-white/10 pb-12 group cursor-pointer"
onclick="window.location.href='mailto:surajitsinghasisir@kehem.com?subject=Inquiry: Photography Package'">
<div class="flex flex-col md:flex-row md:items-end justify-between mb-4">
<h3 class="text-3xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Photography
</h3>
<span class="text-2xl font-serif text-accentViolet mt-2 md:mt-0">$500 – $2,000+</span>
</div>
<p class="text-textMuted font-sans mb-6 max-w-2xl">Editorial, commercial, lifestyle, and brand
photography
with cinematic composition and professional post-processing.</p>
<ul class="space-y-3 text-sm text-textMuted font-sans">
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Concept & mood
planning</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
High-resolution
edited images</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i> Web &
social-ready
delivery</li>
</ul>
<div
class="mt-8 opacity-0 group-hover:opacity-100 transition-opacity duration-300 text-accentTeal text-xs uppercase tracking-widest">
Inquire Now <i class="ph ph-arrow-right ml-2"></i>
</div>
</div>
<!-- Tier 2 -->
<div class="pricing-tier border-b border-white/10 pb-12 group cursor-pointer"
onclick="window.location.href='mailto:surajitsinghasisir@kehem.com?subject=Inquiry: Cinematography Package'">
<div class="flex flex-col md:flex-row md:items-end justify-between mb-4">
<h3 class="text-3xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Cinematography
</h3>
<span class="text-2xl font-serif text-accentViolet mt-2 md:mt-0">$1,200 – $5,000+</span>
</div>
<p class="text-textMuted font-sans mb-6 max-w-2xl">Cinematic video production for brands,
artists, events,
and commercial storytelling.</p>
<ul class="space-y-3 text-sm text-textMuted font-sans">
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Story-driven
shooting</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Professional color
grading</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i> 4K
delivery</li>
</ul>
<div
class="mt-8 opacity-0 group-hover:opacity-100 transition-opacity duration-300 text-accentTeal text-xs uppercase tracking-widest">
Inquire Now <i class="ph ph-arrow-right ml-2"></i>
</div>
</div>
<!-- Tier 3 -->
<div class="pricing-tier border-b border-white/10 pb-12 group cursor-pointer"
onclick="window.location.href='mailto:surajitsinghasisir@kehem.com?subject=Inquiry: Vertical Reels Package'">
<div class="flex flex-col md:flex-row md:items-end justify-between mb-4">
<h3 class="text-3xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Vertical Reels
</h3>
<span class="text-2xl font-serif text-accentViolet mt-2 md:mt-0">$300 – $1,500+</span>
</div>
<p class="text-textMuted font-sans mb-6 max-w-2xl">High-impact vertical videos optimized for
Instagram
Reels, TikTok, and Shorts.</p>
<ul class="space-y-3 text-sm text-textMuted font-sans">
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i> 9:16
framing</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Fast-paced cinematic
edits</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Platform-optimized
export</li>
</ul>
<div
class="mt-8 opacity-0 group-hover:opacity-100 transition-opacity duration-300 text-accentTeal text-xs uppercase tracking-widest">
Inquire Now <i class="ph ph-arrow-right ml-2"></i>
</div>
</div>
<!-- Tier 4 -->
<div class="pricing-tier pb-4 group cursor-pointer"
onclick="window.location.href='mailto:surajitsinghasisir@kehem.com?subject=Inquiry: Full Production'">
<div class="flex flex-col md:flex-row md:items-end justify-between mb-4">
<h3 class="text-3xl font-serif text-textMain group-hover:text-accentTeal transition-colors">
Full
Production</h3>
<span class="text-2xl font-serif text-accentViolet mt-2 md:mt-0">Custom Quote</span>
</div>
<p class="text-textMuted font-sans mb-6 max-w-2xl">End-to-end visual production — from concept
to final
delivery.</p>
<ul class="space-y-3 text-sm text-textMuted font-sans">
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Pre-production
planning</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i>
Shooting + editing
</li>
<li class="flex items-center"><i class="ph ph-check-circle text-accentTeal mr-3"></i> Custom
visual
direction</li>
</ul>
<div
class="mt-8 opacity-0 group-hover:opacity-100 transition-opacity duration-300 text-accentTeal text-xs uppercase tracking-widest">
Inquire Now <i class="ph ph-arrow-right ml-2"></i>
</div>
</div>
</div>
</div>
</section>
<!-- 9. AUTHORS / TEAM -->
<section class="py-32 px-6 bg-bg">
<div class="max-w-7xl mx-auto">
<h2 class="text-4xl md:text-6xl font-serif text-textMain mb-20 text-center">Collaborators</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-12">
<!-- Author 1 -->
<div class="group text-center">
<div
class="w-32 h-32 mx-auto rounded-full overflow-hidden mb-6 border border-white/10 group-hover:border-accentTeal transition-colors duration-500">
<img src="authors/2.jpg" alt="Author"
class="w-full h-full object-cover grayscale group-hover:grayscale-0 transition-all duration-500">
</div>
<h4 class="text-xl font-serif text-textMain">Sarah Jenkins</h4>
<p class="text-sm text-accentTeal uppercase tracking-widest mt-2">Producer</p>
</div>
<!-- Author 2 -->
<div class="group text-center">
<div
class="w-32 h-32 mx-auto rounded-full overflow-hidden mb-6 border border-white/10 group-hover:border-accentTeal transition-colors duration-500">
<img src="authors/3.jpg" alt="Author"
class="w-full h-full object-cover grayscale group-hover:grayscale-0 transition-all duration-500">
</div>
<h4 class="text-xl font-serif text-textMain">David Chen</h4>
<p class="text-sm text-accentTeal uppercase tracking-widest mt-2">Sound Engineer</p>
</div>
<!-- Author 3 -->
<div class="group text-center">
<div
class="w-32 h-32 mx-auto rounded-full overflow-hidden mb-6 border border-white/10 group-hover:border-accentTeal transition-colors duration-500">
<img src="authors/1.jpg" alt="Author"
class="w-full h-full object-cover grayscale group-hover:grayscale-0 transition-all duration-500">
</div>
<h4 class="text-xl font-serif text-textMain">Surajit Singha Sisir</h4>
<p class="text-sm text-accentTeal uppercase tracking-widest mt-2">Director of Photography</p>
</div>
</div>
</div>
</section>
<!-- 10. PLATFORM PRESENCE -->
<section class="py-24 px-6 bg-surface border-t border-white/5">
<div class="max-w-4xl mx-auto text-center">
<h3 class="text-2xl font-serif text-textMain mb-12">Platform Presence</h3>
<div class="flex flex-wrap justify-center gap-8">
<a href="https://www.facebook.com/surajit.singha.sisir" target="_blank"
class="text-textMuted hover:text-accentTeal transition-colors flex items-center">
<i class="ph ph-facebook-logo text-2xl mr-2"></i> Facebook
</a>
<a href="https://www.shutterstock.com/g/surajitsingha" target="_blank"
class="text-textMuted hover:text-accentTeal transition-colors flex items-center">
<i class="ph ph-film-strip text-2xl mr-2"></i> Shutterstock
</a>
<a href="https://pixabay.com/users/surajitsinghasisir-5124070/" target="_blank"
class="text-textMuted hover:text-accentTeal transition-colors flex items-center">
<i class="ph ph-image text-2xl mr-2"></i> Pixabay
</a>
<a href="https://www.linkedin.com/in/surajit-singha/" target="_blank"
class="text-textMuted hover:text-accentTeal transition-colors flex items-center">
<i class="ph ph-linkedin-logo text-2xl mr-2"></i> LinkedIn
</a>
<a href="https://github.com/surajit-singha-sisir" target="_blank"
class="text-textMuted hover:text-accentTeal transition-colors flex items-center">
<i class="ph ph-github-logo text-2xl mr-2"></i> GitHub
</a>
</div>
</div>
</section>
<!-- 11. CONTACT -->
<section id="contact" class="py-32 px-6 bg-bg">
<div class="max-w-3xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-4xl md:text-6xl font-serif text-textMain">Let's Create</h2>
<p class="text-textMuted mt-4">Available for freelance projects worldwide.</p>
</div>
<form class="space-y-12" id="contactForm"
onsubmit="event.preventDefault(); alert('Thank you for your message. This is a demo form.');">
<div class="relative group">
<input type="text" id="name" placeholder=" " required
class="w-full bg-transparent border-b border-white/20 py-4 text-textMain focus:outline-none focus:border-accentTeal transition-colors peer placeholder-transparent">
<label for="name"
class="absolute left-0 top-4 text-textMuted transition-all peer-placeholder-shown:text-base peer-placeholder-shown:top-4 peer-focus:-top-6 peer-focus:text-xs peer-focus:text-accentTeal">Name</label>
</div>
<div class="relative group">
<input type="email" id="email" placeholder=" " required
class="w-full bg-transparent border-b border-white/20 py-4 text-textMain focus:outline-none focus:border-accentTeal transition-colors peer placeholder-transparent">
<label for="email"
class="absolute left-0 top-4 text-textMuted transition-all peer-placeholder-shown:text-base peer-placeholder-shown:top-4 peer-focus:-top-6 peer-focus:text-xs peer-focus:text-accentTeal">Email</label>
</div>
<div class="relative group">
<textarea id="message" rows="4" placeholder=" " required
class="w-full bg-transparent border-b border-white/20 py-4 text-textMain focus:outline-none focus:border-accentTeal transition-colors peer placeholder-transparent resize-none"></textarea>
<label for="message"
class="absolute left-0 top-4 text-textMuted transition-all peer-placeholder-shown:text-base peer-placeholder-shown:top-4 peer-focus:-top-6 peer-focus:text-xs peer-focus:text-accentTeal">Message</label>
</div>
<button type="submit"
class="w-full md:w-auto px-12 py-4 bg-accentTeal/10 border border-accentTeal text-accentTeal hover:bg-accentTeal hover:text-bg transition-all duration-300 uppercase tracking-widest text-sm font-sans">
Send Message
</button>
</form>
</div>
</section>
</main>
<!-- Footer -->
<footer class="py-12 px-6 bg-surface border-t border-white/5">
<div class="max-w-7xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-textMuted text-sm font-sans mb-4 md:mb-0">
© 2025 Surajit Singha Sisir. All Rights Reserved.
</p>
<div class="flex space-x-6">
<a href="https://www.instagram.com/surajitsinghasisir/" target="_blank" class="text-textMuted hover:text-accentTeal transition-colors">
<i class="ph ph-instagram-logo text-xl"></i>
</a>
<a href="https://www.linkedin.com/in/surajit-singha/" target="_blank" class="text-textMuted hover:text-accentTeal transition-colors">
<i class="ph ph-linkedin-logo text-xl"></i>
</a>
<a href="https://github.com/surajit-singha-sisir" target="_blank" class="text-textMuted hover:text-accentTeal transition-colors">
<i class="ph ph-github-logo text-xl"></i>
</a>
</div>
</div>
</div>
</footer>
<!-- Swiper JS -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<!-- GSAP for Animations -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/ScrollTrigger.min.js"></script>
<!-- Main JavaScript -->
<script>
// Loader Animation
window.addEventListener('load', function () {
const loaderText = document.getElementById('loader-text');
const loaderBar = document.getElementById('loader-bar');
const loader = document.getElementById('loader');
setTimeout(() => {
loaderText.style.opacity = '1';
loaderBar.style.width = '100%';
}, 100);
setTimeout(() => {
loader.style.opacity = '0';
setTimeout(() => {
loader.style.display = 'none';
}, 800);
}, 2000);
});
// Mobile Menu Toggle
const menuBtn = document.getElementById('menu-btn');
const closeMenu = document.getElementById('close-menu');
const mobileMenu = document.getElementById('mobile-menu');
const mobileLinks = document.querySelectorAll('.mobile-link');
menuBtn.addEventListener('click', () => {
mobileMenu.classList.remove('translate-x-full');