-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
939 lines (611 loc) · 33.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<!-- Font Awesome CDN for Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Swiper CSS -->
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Font Awesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Responsive</title>
<link rel="stylesheet" href="./css/style.css" />
<!-- <link rel="stylesheet" href="./css/Responsive.css" /> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<!-- jQuery (required by Owl Carousel) -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Owl Carousel JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
</head>
<body>
<div class="top-bar">
<div class="left-section">
<div class="since" style="color: #cc0000;">Since: 2007</div>
<div class="double-vertical-line">
<div class="vertical-line"></div>
</div>
</div>
<div class="right-section">
<div class="contact-info">
<span><i class="fa fa-space"></i> +91 9818333866</span>
<div class="double-vertical-line">
<div class="vertical-line"></div>
</div>
<span><i class="fa fa-space"></i> [email protected]</span>
</div>
<div class="icon-group">
<i class="fa fa-space" style="padding: 2px;"></i>
<i class="fa fa-space" style="padding: 3px;"></i>
<i class="fa fa-space" style="padding: 4px;"></i>
</div>
</div>
</div>
<!-- Header -->
<header class="header">
<img src="./image/logo.jpeg" alt="Sunrise Logo" class="logo" />
<!-- Hamburger Icon for Mobile -->
<div id="hamburger-icon" class="hamburger-icon" onclick="toggleMenu()">☰</div>
<!-- Close Icon for Mobile -->
<div id="close-icon" class="close-icon" onclick="toggleMenu()" style="display: none;">✕</div>
<!-- Navigation Menu -->
<nav>
<ul id="nav-links" class="nav-links">
<li><a href="index.html" class="">Home</a></li>
<li><a href="About.html">About</a></li>
<li class="dropdown">
<a href="blog.html" class="dropbtn">Practice Areas</a>
<div class="dropdown-content">
<a href="trademark-registration.html">Trademark Registration</a>
<a href="Design.html">Design</a>
<a href="Copyright.html">Copyright</a>
<a href="iso.html">ISO</a>
<a href="Fssal.html">FSSAI (Food Licence)</a>
<a href="Msme.html">Pvt. Ltd, MSME/Udyam Reg.</a>
</div>
</li>
<li><a href="blog.html">IP News & Events</a></li>
<li><a href="Careers.html">Careers</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
</ul>
</nav>
<!-- Enquiry Button -->
<div class="button-container">
<button class="enquiry-button">Enquiry Now</button>
</div>
</header>
<!-- Enquiry Modal -->
<div id="enquiryModal" class="modal">
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<h2 class="form-heading">Enquiry Now</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" placeholder="Enter name">
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter email">
<label for="mobile">Mobile No. :</label>
<input type="text" id="mobile" placeholder="Enter mobile no.">
<label for="service">Choose Service :</label>
<select id="service">
<option>Select Your Service</option>
<option>Service 1</option>
<option>Service 2</option>
</select>
<label for="message">Message :</label>
<textarea id="message" placeholder="Write Your Message ..."></textarea>
<button type="submit">Submit</button>
</form>
</div>
</div>
<!-- activities-section start -->
<div id="imageCarousel" class="carousel slide" data-bs-ride="carousel" data-bs-interval="2000">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="./image/home-banner.jpg" class="d-block w-100" alt="Image 1">
<div class="info-card-tee">
</div>
</div>
<div class="carousel-item">
<img src="./image/home-banner-2.jpg" class="d-block w-100" alt="Image 2">
<div class="info-card-tee">
</div>
</div>
<div class="carousel-item active">
<img src="./image/home-banner.jpg" class="d-block w-100" alt="Image 1">
<div class="info-card-tee">
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#imageCarousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden"></span>
<i class="fa-thin fa-square-full"></i>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#imageCarousel" data-bs-slide="">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden"></span>
<i class="fa-thin fa-square-full"></i>
<!-- <i class="fa-regular fa-circle"></i> -->
</button>
</div>
<!-- Info Cards Section - Positioned over Carousel -->
<div class="info-cards-container">
<div class="row_cards">
<div class="col-md-3">
<div class="info-card-tee-static">
<i class="fa-thin fa-square-full"></i>
<h5>J. P. Singh (Proprietor & Adv.)</h5>
<p>(DELHI HIGH COURT)</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<p style="color: #d32f2f;">+91 9818383866 | +91 8800368866</p>
</div>
</div>
<div class="col-md-3">
<div class="info-card-tee-static">
<i class="fa-thin fa-square-full"></i>
<h5>Sunita R. Singh (Proprietor & Adv.)</h5>
<p>(DELHI HIGH COURT)</p>
<p><a href="mailto:[email protected]">[email protected]</a></p>
<p style="color: #d32f2f;">+91 9650839235 | +91 7703859961</p>
</div>
</div>
<div class="col-md-3">
<div class="info-card-tee-static">
<i class="fa-thin fa-square-full"></i>
<h5>Sunrise Trademark Co.</h5>
<p>SPECIALISED REGISTRATION SERVICE</p>
</div>
</div>
</div>
</div>
<!-- activities-section end -->
<!-- about-section -->
<section class="about-section sec-pad bg-color-1">
<div class="auto-container">
<div class="row clearfix">
<div class="col-lg-6 col-md-12 col-sm-12 content-column">
<div class="content_block_1">
<div class="content-box">
<div class="sec-title">
<h6><i class="flaticon-sunny-day-or-sun-weather"></i><span>
<i class="fa-thin fa-square-full"></i>
Welcome to Sunrise Trademark Co.</span></h6>
<h2>About Sunrise Trademark Co.</h2>
<div class="title-shape"></div>
</div>
<div class="text about-read-more">
<h5>‘A diverse and dynamic group‘, SUNRISE TRADE MARK CO. is a top flight practice that protects and enforces IP assets from filing and prosecuting patent and trade mark applications, through to IP litigation, often concerning landmark cases. The reputation of the esteemed practice head, ADV J. P. SINGH , precedes him for his mastery of all aspects of IP protection and enforcement and his contributions to policy matters. Senior ADV. J.P.SINGH heads the trade marks and broader commercial IP function and ADV. SUNITA R.SINGH is the EXCELENT ADVOCATE who heads the patents, designs, TRADE MARK. Practice head(s): ADV. J.P.SINGH AND ADV. SUNITA R. SINGH</h5>
<li>
<a href="">
<i class="flaticon-right-arrow" style="font-size: 14px;"></i>
<span><i class="fa-thin fa-square-full"></i>
Read More</span>
</a>
</div>
<div class="lower-box">
<div class="row clearfix">
<!-- Contact Number Section -->
<div class="col-lg-12 col-md-12 col-sm-12 single-column">
<div class="single-item wow fadeInLeft animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="icon-box"><i class="fa-thin fa-square-full"></i></div>
<div class="text-container">
<h5 >Contact Number</h5>
<p><a href="#">+91 9818383866</a> | <a href="#">+91 8800368866</a></p>
<p><a href="#">+91 9650839235</a> | <a href="#">+91 7703859961</a></p>
</div>
</div>
</div>
<!-- Chamber Number Section -->
<div class="col-lg-12 col-md-12 col-sm-12 single-column" style="margin-top:31px;">
<div class="single-item wow fadeInRight animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="icon-box"><i class="fa-thin fa-square-full"></i></div>
<div class="text-container">
<h5>Chamber Number</h5>
<p><a href="#">528 Lawyers Chambers Block, Karkar Dooma<br>Shahdara, Delhi-92</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 col-sm-12 image-column">
<div class="image_block_1">
<div class="image-box">
<figure class="image"><img src="./image/about.jpg" alt=""></figure>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- about-section end -->
<!-- explore-section -->
<section class="explore-section centred bg-color-2" style="background-image: url(./image/bg5.jpg); background-size: cover; background-repeat: no-repeat;">
<div class="pattern-layer"></div>
<div class="auto-container">
<center> <div class="sec-title centred light">
<center><h6><i class="flaticon-sunny-day-or-sun-weather"></i><span>Specialised Registration Service</span><i class="flaticon-sunny-day-or-sun-weather"></i></h6></center>
<h2>Explore Our Offices</h2>
<div class="title-shape"></div>
</div></center>
<div class="row clearfix">
<div class="col-lg-2 col-md-6 col-sm-12 explore-block"></div>
<div class="col-lg-4 col-md-6 col-sm-12 explore-block">
<div class="explore-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="./image/cart/court.jpg" alt=""></figure>
<div class="content-box">
<div class="text">
<div class="icon-box"></div>
<h4>Karkar Dooma Court</h4>
</div>
<div class="overlay-content">
<h4>Chamber <br/>Karkar Dooma Court</h4>
<p>Chamber No. 528 Lawyers Chambers Block, Karkar Dooma Shahdara New Delhi-92</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 explore-block">
<div class="explore-block-one wow fadeInUp animated animated" data-wow-delay="300ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><img src="./image/cart/headoffice.jpg" alt=""></figure>
<div class="content-box">
<div class="text">
<div class="icon-box "></div>
<h4>Head Office</h4>
</div>
<div class="overlay-content">
<h4>Head Office </h4>
<p>Block B-4, Sunrise House, Gali No.-9, Harsh Vihar, New Delhi-93</p>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 col-sm-12 explore-block"></div>
</div>
</div>
</section>
<!-- explore-section end -->
<!-- Service Section sunny-day-or-sun-weathert -->
<!-- Service Section -->
<section class="team-section sec-pad bg-color-1">
<div class="auto-container">
<div class="sec-title centred">
<h2>Our Legal Practice Areas</h2>
<div class="title-shape"></div>
</div>
<div class="row clearfix">
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/Trademark-Registration.jpg"" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">Trademark Registration</a></h4>
<span class="designation">Registration of Trademark shall provide the exclusive right to the use...</span>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/Copyright.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">Copyright</a></h4>
<span class="designation">A copyright gives exclusive rights to persons who create original works...</span>
</br>
<div class="btn-box">
<a href="" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="copyright.php"><img src="./image/cart/design.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">Design</a></h4>
<span class="designation">A design patent is a type of patent that protects the way...</span>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/patent.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#"">Patent</a></h4>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn" data-toggle="modal" data-target="#myModal">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="litigation.php"><img src="./image/cart/Litigation.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">Litigation</a></h4>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn" data-toggle="modal" data-target="#myModal">Enquiry</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="other-law-services.php"><img src="./image/cart/Law-Services.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">Other Law Services</a></h4>
<br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn" data-toggle="modal" data-target="#myModal">Enquiry</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/ISO.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">ISO</a></h4>
<span class="designation">ISO refers to International Organization for Standardisation.</span>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/FSSAI.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="fssai.php">FSSAI (Food Licence)</a></h4>
<span class="designation">The Food Safety and Standards Authority of India...</span>
</br>
<div class="btn-box">
<a href="fssai.php" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 team-block">
<div class="team-block-one wow fadeInUp animated animated" data-wow-delay="00ms" data-wow-duration="1500ms">
<div class="inner-box">
<figure class="image-box"><a href="#"><img src="./image/cart/MSME.jpg" alt=""></a></figure>
<div class="lower-content">
<div class="author-box"></br>
<h4><a href="#">PVT. Ltd, MSME/Udyam Reg.</a></h4>
<span class="designation">Beginning a company is an exciting and gratifying process...</span>
</br>
<div class="btn-box">
<a href="#" class="theme-btn our-service-btn">Read More</a>
</div></br>
</div>
</div>
</div>
</div>
</div>
<!-- Service Section end -->
</div>
</div>
</section>
<!-- Years of experiance Section Start -->
<section class="experience-section section-padding">
<div class="container">
<div class="section-title text-center">
<h2>15 Years Of Experience As An Attorney Firm</h2>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="content text-center">
<p>The firm: SUNRISE TRADE MARK CO. is a full-service intellectual property and technology law firm focused<br> on rendering business-friendly legal advice.</p>
</div>
<div class="section-subtitle text-center">
<h3>2007</h3>
<h6>
<i class="fas fa-sun"></i>
<span> COMPANY ESTABLISHED </span>
<i class="fas fa-sun"></i>
</h6>
</div>
</div>
</div>
</div>
</section>
<!-- Years of experiance Section End -->
<!-- testimonial-section -->
<section class="testimonial-section centred" style="background-image: url(./image/Testimonials/testimonial-bg.jpg);">
<div class="auto-container">
<div class="sec-title centred light">
<h2>Our Testimonials</h2>
<div class="title-shape"></div>
</div>
<div class="three-item-carousel owl-carousel owl-theme">
<!-- Testimonial 1 -->
<div class="testimonial-block-one">
<div class="inner-box">
<figure class="image-box"><img src="./image/Testimonials/testimonial-1.png" alt=""></figure>
<div class="text">
<p>They have an amazing ability to deal with pressure, while having the patience to explain complex legal requirements in simple terms to the client. On top of that they understand our business and our perspective.</p>
</div>
<div class="author-box">
<h4>Ravi Sharma</h4>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="testimonial-block-one">
<div class="inner-box">
<figure class="image-box"><img src="./image/Testimonials/testimonial-2.png" alt=""></figure>
<div class="text">
<p>The Lawyers of this firm have been of great assistance to me. Their step by step and methodical guidance has ensured that not only was my query resolved satisfactorily but the entire experience was smooth. I definitely recommend Vivek Law Firm as professional firm.</p>
</div>
<div class="author-box">
<h4>Shekhar</h4>
</div>
</div>
</div>
<!-- Testimonial 3 -->
<div class="testimonial-block-one">
<div class="inner-box">
<figure class="image-box"><img src="./image/Testimonials/testimonial-3 (1).png" alt=""></figure>
<div class="text">
<p>We highly recommend ADV J. P. SINGH - they are truly professional and "results' oriented"... Our publishing company is at ease knowing they have our back!</p>
</div>
<div class="author-box">
<h4>Shivenika Singh</h4>
</div>
</div>
</div>
<!-- Additional Testimonials as needed -->
</div>
</div>
</section>
<script>
$(document).ready(function(){
$('.three-item-carousel').owlCarousel({
items: 1, // Default: 1 item for small screens
loop: true,
margin: 30,
autoplay: true,
autoplayTimeout: 5000,
autoplayHoverPause: true,
dots: true,
nav: true,
navText: ["<span class='owl-nav-prev'>❮</span>","<span class='owl-nav-next'>❯</span>"],
responsive: {
0: { items: 1 }, // 1 item for small screens (phones)
600: { items: 1 }, // 1 item for medium screens (tablets)
1000: { items: 3 } // 3 items for large screens (laptops/desktops)
}
});
});
</script>
<!-- testimonial-section end -->
<!-- news-section -->
<section class="news-section bg-color-1">
<div class="auto-container">
<div class="sec-title centred">
<h6></h6>
<h2>Latest From Our Blog</h2>
<div class="title-shape"></div>
</div>
<div class="row clearfix">
</div>
</div>
</section>
<!-- news-section end -->
<!-- Footer Section -->
<div class="footer">
<!-- About Us Section -->
<div>
<h3>About Us</h3>
<p>
‘A diverse and dynamic group‘, SUNRISE TRADE MARK CO. is a top flight
practice that protects and enforces IP assets from filing and
prosecuting patent and trade mark applications, through to IP
litigation, often concerning landmark cases.
</p>
</div>
<!-- Quick Links Section -->
<div>
<h3>Quick Links</h3>
<ul>
<li><a href="trademark-registration.html">Trademark Registration</a></li>
<li><a href="Copyright.html">Copyright</a></li>
<li><a href="Design.html">Design</a></li>
<li><a href="iso.html">ISO</a></li>
<li><a href="Fssal.html">FSSAI (Food Licence)</a></li>
<li><a href="Msme.html">Pvt. Ltd, MSME/Udyam Reg.</a></li>
</ul>
</div>
<!-- Contact Us Section -->
<div>
<h3>Contact Us</h3>
<p>
<strong>Location</strong><br />Block B-4, Sunrise House, Gali No.-9,
Harsh Vihar, New Delhi-93
</p>
<p><strong>Phone</strong><br />+91 9818383866</p>
<p><strong>Email</strong><br />[email protected]</p>
</div>
<!-- Enquiry Box Section -->
<div class="enquiry-box">
<h4>Enquiry Your Query</h4>
<p>Here you can enquire about issues and make requests.</p>
<button>ENQUIRY NOW</button>
</div>
</div>
<!-- Copyright Section -->
<div class="footer-copyright">
© 2022 By <a href="#">Sunrise Trademark Co.</a> All Rights Reserved.
</div>
<!-- Font Awesome for icons (optional, include if you want icons in contact info) -->
<script
src="https://kit.fontawesome.com/a076d05399.js"
crossorigin="anonymous"
></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Bootstrap and JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Swiper JS -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="./js/script.js"></script>
<script src="./js/swiper.js"></script> </body>
</html>