-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1045 lines (1043 loc) · 41.8 KB
/
index.html
File metadata and controls
1045 lines (1043 loc) · 41.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
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link
href="https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/daisyui@4.12.10/dist/full.min.css"
rel="stylesheet"
type="text/css"
/>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
content: [],
theme: {
extend: {
container: {
padding: {
DEFAULT: "1rem",
sm: "1rem",
lg: "2rem",
xl: "4rem",
"2xl": "5rem",
},
},
colors: {
accent: "#ABEF5F",
},
fontFamily: {
manrope: ["Manrope", "sans-serif"],
},
backgroundImage: {
bgContact: "url('./assets/bg-contact.jpg');",
},
},
},
plugins: [],
};
</script>
<title>Rinterio</title>
</head>
<body class="font-manrope bg-[#f4f4f4]">
<!-- Header -->
<header class="bg-gradient-to-b from-transparent via-transparent to-white">
<!-- Navbar -->
<nav class="container mx-auto bg-transparent">
<div class="navbar">
<div class="navbar-start">
<div>
<a class="text-2xl font-extrabold">
<span
><i
class="fa-solid fa-arrow-right -rotate-45 bg-accent rounded-full p-1"
></i
></span>
Rinterio</a
>
</div>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1 text-lg">
<li class="font-semibold"><a href="#">Home</a></li>
<li class="text-gray-500"><a href="#">Services</a></li>
<li class="text-gray-500"><a href="#">Portfolio</a></li>
<li class="text-gray-500"><a href="#">Blogs</a></li>
<li class="text-gray-500"><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="navbar-end flex gap-3">
<div class="dropdown">
<div
tabindex="0"
role="button"
class="p-3 rounded-full bg-white lg:hidden"
>
<svg
xmlns="http://www.w3.org/2000/svg"
class="h-5 w-5"
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M4 6h16M4 12h8m-8 6h16"
/>
</svg>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 p-2 shadow relative right-0 space-y-3"
>
<li class="font-semibold"><a href="#">Home</a></li>
<li class="text-gray-500"><a href="#">Services</a></li>
<li class="text-gray-500"><a href="#">Portfolio</a></li>
<li class="text-gray-500"><a href="#">Blogs</a></li>
<li class="text-gray-500"><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="hidden md:flex items-center gap-4">
<i
class="fa-solid fa-magnifying-glass bg-white p-2 rounded-full"
></i>
<i
class="fa-solid fa-cart-shopping bg-white p-2 rounded-full"
></i>
</div>
<div
class="hidden md:flex items-center gap-2 text-black font-extrabold bg-accent rounded-3xl px-4 py-2"
>
<a class="">Book Consult</a>
<i
class="fa-solid fa-arrow-right bg-black text-white p-1.5 rounded-full -rotate-45"
></i>
</div>
</div>
</div>
</nav>
<!-- Hero -->
<section class="pt-7 pb-7 md:pb-16">
<div
class="container mx-auto flex flex-col gap-8 justify-center items-center"
>
<img class="md:w-2/4" src="./assets/banner.png" alt="" />
<h1
class="text-2xl md:text-4xl font-extrabold text-center leading-10"
>
A barn house of this design has a <br />
striking appearance
</h1>
<button
class="bg-accent/50 px-4 py-2 md:px-6 md:py-3 rounded-3xl font-bold md:mt-4 w-full sm:w-fit"
>
View Details
<i
class="fa-solid fa-arrow-right -rotate-45 bg-accent rounded-full p-1"
></i>
</button>
</div>
</section>
</header>
<!-- Main -->
<main>
<!-- About us section -->
<section class="my-20">
<div class="container mx-auto">
<div
class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center justify-center justify-items-center"
>
<div
class="flex flex-col gap-6 justify-center items-center md:justify-start md:items-start"
>
<div class="hidden lg:flex">
<img src="./assets/Vector.png" alt="" />
</div>
<h4
class="bg-white rounded-3xl w-fit px-5 py-2 font-semibold flex gap-2 justify-center items-center"
>
<span><i class="fa-solid fa-arrow-right-long"></i></span
><span> About Us </span>
</h4>
<div class="flex flex-col gap-5 text-center md:text-left">
<h2 class="font-black leading-tight text-2xl md:text-3xl">
Designing spaces that <br />
inspire and endure.
</h2>
<p class="font-medium">
Our projects seamlessly merge timeless rustic aesthetics with
contemporary elegance, using natural materials and modern
design elements.
</p>
</div>
<!-- Cards -->
<div class="flex flex-col md:flex-row lg:flex-col gap-6">
<!-- Card -->
<div
class="bg-white flex items-center gap-6 px-8 py-4 rounded-xl"
>
<div>
<img src="./assets/commercial.png" alt="" />
</div>
<div class="">
<h4 class="text-xl font-extrabold">Commercial</h4>
<p class="w-full lg:w-4/5 pt-2 font-medium text-gray-600">
Experience the blend of rustic warmth and modern design in
our projects.
</p>
</div>
</div>
<div
class="bg-white flex items-center gap-6 px-8 py-4 rounded-xl"
>
<div>
<img src="./assets/residential.png" alt="" />
</div>
<div class="">
<h4 class="text-xl font-extrabold">Residential</h4>
<p class="w-full lg:w-4/5 pt-2 font-medium text-gray-600">
Our residential designs blend rural comfort with modern
style for a unique living experience.
</p>
</div>
</div>
</div>
</div>
<div class="flex flex-1 w-full h-full p-2">
<img class="w-full h-full" src="./assets/Rectangle.png" alt="" />
</div>
</div>
</div>
</section>
<!-- Ratings section -->
<section class="mb-20">
<div class="container mx-auto">
<!-- Cards -->
<div
class="bg-white px-12 py-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 rounded-xl gap-6"
>
<!-- Card -->
<div class="flex flex-col justify-center items-center gap-3">
<img src="./assets/happy.png" alt="" />
<p class="font-extrabold text-3xl">235+</p>
<p class="font-medium">Happy Client Review</p>
</div>
<div class="flex flex-col justify-center items-center gap-3">
<img src="./assets/departement.png" alt="" />
<p class="font-black text-3xl">50+</p>
<p class="font-medium">Work Departments</p>
</div>
<div class="flex flex-col justify-center items-center gap-3">
<img src="./assets/happy.png" alt="" />
<p class="font-extrabold text-3xl">30k+</p>
<p class="font-medium">Our Happy Client</p>
</div>
<div class="flex flex-col justify-center items-center gap-3">
<img src="./assets/happy.png" alt="" />
<p class="font-extrabold text-3xl">307+</p>
<p class="font-medium">Staff Members</p>
</div>
</div>
</div>
</section>
<!-- Work Process -->
<section class="my-20">
<div
class="container mx-auto flex flex-col justify-center items-center"
>
<div class="">
<h4 class="bg-white px-4 py-2 rounded-3xl font-bold">
<i class="fa-solid fa-arrow-right-long mr-3"></i> How we works
</h4>
</div>
<div class="flex flex-col gap-3 text-center mt-4">
<h2 class="text-2xl md:text-3xl font-extrabold">
Our Works Process
</h2>
<p class="md:w-3/4 mx-auto text-gray-600">
Discover our seamless process, where every detail from concept to
completion is carefully crafted to create your ideal home.
</p>
</div>
<!-- Cards -->
<div class="grid md:grid-cols-2 lg:grid-cols-4 mt-12 gap-4">
<!-- Card -->
<div class="card bg-[#E7C1D3] items-start">
<figure class="px-10 pt-10 flex justify-start">
<img
src="./assets/concept.png"
alt="Shoes"
class="rounded-xl"
/>
</figure>
<div class="card-body items-start">
<h2 class="card-title font-extrabold">Concept</h2>
<p>
Combining rustic charm with modern sophistication for a
timeless design.
</p>
</div>
</div>
<div class="card bg-[#EFDA6E] items-start">
<figure class="px-10 pt-10 flex justify-start">
<img
src="./assets/flow-chart.png"
alt="Shoes"
class="rounded-xl"
/>
</figure>
<div class="card-body items-start">
<h2 class="card-title font-extrabold">Design Process</h2>
<p>
Fusing traditional warmth and contemporary elegance in every
step.
</p>
</div>
</div>
<div class="card bg-[#A4DAC3] items-start">
<figure class="px-10 pt-10 flex justify-start">
<img src="./assets/vision.png" alt="Shoes" class="rounded-xl" />
</figure>
<div class="card-body items-start">
<h2 class="card-title font-extrabold">Supervision</h2>
<p>
Ensuring each detail blends classic appeal with modern
functionality.
</p>
</div>
</div>
<div class="card bg-[#77AAEA] items-start">
<figure class="px-10 pt-10 flex justify-start">
<img
src="./assets/budget-planning.png"
alt="Shoes"
class="rounded-xl"
/>
</figure>
<div class="card-body items-start">
<h2 class="card-title font-extrabold">Budget Planning</h2>
<p>
Balancing rustic aesthetics with modern needs while staying
within budget.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Latest Portfolio -->
<section class="mb-20 bg-white py-20">
<div class="container mx-auto">
<!-- <div class="flex flex-col justify-center items-center"> -->
<div
class="flex flex-col gap-4 justify-center items-center text-center"
>
<p class="bg-accent/20 font-bold rounded-3xl px-6 py-2">
<span><i class="fa-solid fa-arrow-right-long mr-3"></i></span
>Explore our Latest works
</p>
<h2 class="text-2xl md:text-4xl font-extrabold">
Our Latest Portfolio
</h2>
<p class="font-medium text-gray-600 md:w-3/4 mx-auto">
Discover our latest designs where classic rustic elements meet
sleek, modern finishes for a unique, stylish look.
</p>
</div>
<!-- Cards -->
<div class="mt-12 grid md:grid-cols-2 lg:grid-cols-12 gap-6">
<!-- Card -->
<!-- Card 1 -->
<div
class="border card flex-col md:flex-row justify-center items-center card-side bg-white md:col-span-2 lg:col-span-8"
>
<figure class="p-4 w-full h-full">
<img
class="h-full w-full rounded-2xl"
src="./assets/img1.png"
alt="Movie"
/>
</figure>
<div class="card-body">
<h2 class="card-title font-extrabold text-2xl">Commercial</h2>
<p class="grow-0 font-medium text-gray-600">
Discover our commercial projects, blending timeless charm with
modern design for functional and stylish spaces.
</p>
<div class="card-actions flex items-center">
<button class="font-bold">View Details</button>
<i
class="fa-solid fa-arrow-right-long -rotate-45 bg-accent p-2 rounded-full"
></i>
</div>
</div>
</div>
<!-- Card 2 -->
<div
class="border card justify-center items-center md:col-span-1 lg:col-span-4 bg-white"
>
<figure class="p-4 w-full h-full">
<img class="w-full h-full" src="./assets/img2.png" alt="" />
</figure>
</div>
<!-- Card 3 -->
<div
class="border card justify-center items-center md:col-span-1 lg:col-span-3 bg-white"
>
<figure class="p-4 w-full h-full">
<img class="w-full h-full" src="./assets/img3.png" alt="" />
</figure>
</div>
<!-- Card 4 -->
<div
class="border card flex-col md:flex-row justify-center items-center card-side bg-white md:col-span-2 lg:col-span-6"
>
<figure class="p-4 w-full h-full">
<img
class="w-full h-full rounded-2xl"
src="./assets/img4.png"
alt="Movie"
/>
</figure>
<div class="card-body">
<h2 class="card-title font-extrabold text-2xl">Commercial</h2>
<p class="grow-0 font-medium text-gray-600">
Explore our commercial designs that combine classic style with
modern efficiency.
</p>
<div class="card-actions flex items-center">
<button class="font-bold">View Details</button>
<i
class="fa-solid fa-arrow-right-long -rotate-45 bg-accent p-2 rounded-full"
></i>
</div>
</div>
</div>
<!-- Card 5 -->
<div
class="border card justify-center items-center bg-white lg:col-span-3"
>
<figure class="p-4 w-full h-full md:col-span-1">
<img class="w-full h-full" src="./assets/img5.png" alt="" />
</figure>
</div>
<!-- Card 6 -->
<div
class="border card flex lg:hidden justify-center items-center bg-white md:col-span-1"
>
<figure class="p-4 w-full h-full">
<img class="w-full h-full" src="./assets/img3.png" alt="" />
</figure>
</div>
</div>
<!-- </div> -->
</div>
</section>
<!-- Before and after -->
<section>
<div class="container mx-auto">
<div
class="flex flex-col gap-4 justify-center items-center text-center"
>
<p class="bg-accent/20 font-bold rounded-3xl px-6 py-2">
<span><i class="fa-solid fa-arrow-right-long mr-3"></i></span
>Before and After
</p>
<h2 class="text-2xl md:text-4xl font-extrabold">
Unveiling the Art of Transformation: <br />
See Creativity in Action!
</h2>
<p class="font-medium text-gray-600 md:w-3/4 mx-auto">
Experience the transformation from old to new, where creativity
meets craftsmanship. See how we turn original spaces into modern
masterpieces.
</p>
</div>
<div class="diff aspect-[16/9] mt-12">
<div class="diff-resizer w-40 md:w-96"></div>
<div class="diff-item-1">
<img
alt="daisy"
src="https://themetechmount.com/wordpress/inoterior/wp-content/uploads/2024/08/after-img-one.jpg"
/>
</div>
<div class="diff-item-2">
<img
alt="daisy"
src="https://themetechmount.com/wordpress/inoterior/wp-content/uploads/2024/08/before-img-one.jpg"
/>
</div>
</div>
</div>
</section>
<!-- Just few steps -->
<section
class="bg-white relative before:absolute before:inset-0 before:w-2/3 before:left-1/2 before:top-1/2 before:-translate-y-1/2 before:-translate-x-1/2 before:bg-gradient-to-tl from-accent/10 via-lime-300/20 to-purple-400/30 before:blur-3xl before:h-full"
>
<div class="container mx-auto px-4 py-10 my-20">
<div class="flex flex-col lg:flex-row gap-4">
<div class="lg:sticky top-0 lg:h-screen flex items-center">
<div
class="flex flex-col gap-4 justify-center items-center text-center lg:text-left lg:justify-start lg:items-start"
>
<p class="bg-accent/20 font-bold rounded-3xl px-6 py-2">
<span><i class="fa-solid fa-user-gear mr-3"></i></span>How we
work
</p>
<h2 class="text-2xl md:text-4xl font-extrabold">
Just
<span
class="bg-gradient-to-r from-accent to-green-700 text-transparent bg-clip-text"
>a few steps</span
>
to get <br />
your dream House
</h2>
<p
class="font-medium text-center text-gray-600 md:w-3/4 lg:text-left"
>
Experience the transformation from old to new, where
creativity meets craftsmanship. See how we turn original
spaces into modern masterpieces.
</p>
</div>
</div>
<!-- Cards -->
<div class="mt-10 mb-40">
<!-- Card 1 -->
<div class="card bg-slate-500/10 backdrop-blur-xl sticky top-6">
<div class="absolute top-0 right-0 w-12">
<img src="./assets/bookmark.png" alt="" />
</div>
<div class="card-body">
<div class="flex lg:gap-6">
<div>
<h3
class="hidden lg:block text-3xl font-extrabold bg-gradient-to-br from-blue-300 to-blue-600 bg-clip-text text-transparent"
>
01.
</h3>
</div>
<div class="flex flex-col gap-4">
<div>
<h3 class="card-title font-bold text-3xl">
Initial Consultation
</h3>
<p class="text-gray-500 font-medium my-4">
Connect with us to discuss your vision, needs, and
preferences. We’ll review your ideas and provide
insights on how we can bring your dream barn house to
life.
</p>
</div>
<div class="">
<ul class="flex flex-col gap-3">
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Personalized Design Discussion
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">Custom Needs Assessment</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Expert Guidance on Vision and Goals
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Card 2 -->
<div
class="card bg-slate-300/10 backdrop-blur-xl mt-10 sticky top-12 translate-y-10"
>
<div class="absolute top-0 right-0 w-12">
<img src="./assets/bookmark.png" alt="" />
</div>
<div class="card-body">
<div class="flex lg:gap-6">
<div>
<h3
class="hidden lg:block text-3xl font-extrabold bg-gradient-to-br from-blue-300 to-blue-600 bg-clip-text text-transparent"
>
02.
</h3>
</div>
<div class="flex flex-col gap-4">
<div>
<h3 class="card-title font-bold text-3xl">
Design Proposal
</h3>
<p class="text-gray-500 font-medium my-4">
Receive a customized design proposal based on our
consultation. This includes concept sketches, floor
plans, and a detailed project overview to ensure we’re
on the same page.
</p>
</div>
<div class="">
<ul class="flex flex-col gap-3">
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Conceptual Sketches and Floor Plans
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Detailed Project Overview
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Transparent Cost Estimates
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Card 3 -->
<div
class="card bg-slate-200/10 backdrop-blur-xl mt-10 sticky top-16 translate-y-24"
>
<div class="absolute top-0 right-0 w-12">
<img src="./assets/bookmark.png" alt="" />
</div>
<div class="card-body">
<div class="flex lg:gap-6">
<div>
<h3
class="hidden lg:block text-3xl font-extrabold bg-gradient-to-br from-blue-300 to-blue-600 bg-clip-text text-transparent"
>
03.
</h3>
</div>
<div class="flex flex-col gap-4">
<div>
<h3 class="card-title font-bold text-3xl">
Finalization and Planning
</h3>
<p class="text-gray-500 font-medium my-4">
Work with us to refine the design and finalize all
details. We’ll create a comprehensive plan, including
material selections, budget estimates, and a project
timeline.
</p>
</div>
<div class="">
<ul class="flex flex-col gap-3">
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Refined Design and Material Selections
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Comprehensive Project Timeline
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Budget Finalization and Approval
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Card 4 -->
<div
class="card bg-slate-100/10 backdrop-blur-xl mt-10 sticky top-24 translate-y-36"
>
<div class="absolute top-0 right-0 w-12">
<img src="./assets/bookmark.png" alt="" />
</div>
<div class="card-body">
<div class="flex lg:gap-6">
<div>
<h3
class="hidden lg:block text-3xl font-extrabold bg-gradient-to-br from-blue-300 to-blue-600 bg-clip-text text-transparent"
>
04.
</h3>
</div>
<div class="flex flex-col gap-4">
<div>
<h3 class="card-title font-bold text-3xl">
Construction and Delivery
</h3>
<p class="text-gray-500 font-medium my-4">
Watch your vision come to life as we manage the
construction process with precision and care. We’ll
keep you updated at every stage and ensure that your
new barn house is completed to your satisfaction.
</p>
</div>
<div class="">
<ul class="flex flex-col gap-3">
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Expert Construction Management
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Regular Progress Updates
</p>
</li>
<li class="flex gap-2 items-center">
<img
class="w-10"
src="./assets/success.png"
alt=""
/>
<p class="font-semibold">
Quality Assurance and Final Walkthrough
</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Article and news -->
<section class="my-20">
<div class="container mx-auto">
<div
class="flex flex-col gap-4 justify-center items-center text-center"
>
<p class="bg-accent/20 font-bold rounded-3xl px-6 py-2">
<span><i class="fa-solid fa-arrow-right-long mr-3"></i></span
>Rinterio News
</p>
<h2 class="text-2xl md:text-4xl font-extrabold">
Read Our Articles and News
</h2>
<p class="font-medium text-gray-600 md:w-3/4 mx-auto">
Discover our latest articles showcasing how we merge timeless
rustic charm with modern sophistication in innovative design
solutions.
</p>
</div>
<!-- Cards -->
<div class="grid grid-cols-1 lg:grid-cols-3 mt-12 gap-6">
<!-- Card 1 -->
<div class="card bg-white flex-col md:flex-row lg:flex-col">
<figure
class="px-6 pt-6 md:py-6 lg:pt-6 w-full md:w-2/4 lg:w-full mx-auto"
>
<img
src="./assets/article1.png"
alt="article1"
class="rounded-xl w-full h-full"
/>
</figure>
<div class="card-body items-start text-left">
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<i class="fa-solid fa-calendar-days"></i>
<span class="font-medium text-sm">July14, 2024</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-regular fa-circle-user"></i>
<span class="font-medium text-sm">By Admin </span>
</div>
</div>
<h2 class="card-title font-extrabold text-xl">
Selecting the Perfect Furniture for Your Home
</h2>
<p class="font-medium">
Find out how to choose furniture that complements your space
and enhances your home's style.
</p>
<div class="card-actions flex items-center">
<button class="font-bold">Read More</button>
<i
class="fa-solid fa-arrow-right-long -rotate-45 bg-accent p-1.5 rounded-full"
></i>
</div>
</div>
</div>
<!-- Card 2 -->
<div class="card bg-white flex-col md:flex-row lg:flex-col">
<figure
class="px-6 pt-6 md:py-6 lg:pt-6 w-full md:w-2/4 lg:w-full mx-auto"
>
<img
src="./assets/article2.png"
alt="article2"
class="rounded-xl w-full h-full"
/>
</figure>
<div class="card-body items-start text-left">
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<i class="fa-solid fa-calendar-days"></i>
<span class="font-medium text-sm">July14, 2024</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-regular fa-circle-user"></i>
<span class="font-medium text-sm">By Admin </span>
</div>
</div>
<h2 class="card-title font-extrabold text-xl">
Tips for Choosing Furniture That Fits Your Space
</h2>
<p class="font-medium">
Learn expert tips for picking furniture that suits your room’s
dimensions and your personal taste.
</p>
<div class="card-actions flex items-center">
<button class="font-bold">Read More</button>
<i
class="fa-solid fa-arrow-right-long -rotate-45 bg-accent p-1.5 rounded-full"
></i>
</div>
</div>
</div>
<!-- Card 3 -->
<div class="card bg-white flex-col md:flex-row lg:flex-col">
<figure
class="px-6 pt-6 md:py-6 lg:pt-6 w-full md:w-2/4 lg:w-full mx-auto"
>
<img
src="./assets/article3.png"
alt="article3"
class="rounded-xl w-full h-full"
/>
</figure>
<div class="card-body items-start text-left">
<div class="flex items-center gap-4">
<div class="flex items-center gap-2">
<i class="fa-solid fa-calendar-days"></i>
<span class="font-medium text-sm">July14, 2024</span>
</div>
<div class="flex items-center gap-2">
<i class="fa-regular fa-circle-user"></i>
<span class="font-medium text-sm">By Admin </span>
</div>
</div>
<h2 class="card-title font-extrabold text-xl">
How to Match Furniture to Your Home’s Aesthetic
</h2>
<p class="font-medium">
Explore strategies for selecting furniture that aligns with
your home’s design theme and creates harmony.
</p>
<div class="card-actions flex items-center">
<button class="font-bold">Read More</button>
<i
class="fa-solid fa-arrow-right-long -rotate-45 bg-accent p-1.5 rounded-full"
></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact us -->
<section
class="bg-bgContact bg-cover bg-center bg-no-repeat py-16 md:py-24 px-4"
>
<div class="container mx-auto">
<div
class="flex flex-col gap-4 justify-center items-center text-center"
>
<p class="bg-accent/20 font-bold rounded-3xl px-6 py-2">
<span><i class="fa-solid fa-arrow-right-long mr-3"></i></span
>Let’s Connect
</p>
<h2 class="text-2xl md:text-4xl font-extrabold">
Let’s Discuss Next Project
</h2>
<p class="font-medium text-gray-600 md:w-3/4 mx-auto">
Uncover the artistry in our designs as we blend contemporary
elegance with timeless charm, crafting spaces that inspire and
captivate.
</p>
</div>
<div class="form-container mt-8">
<form
class="w-full lg:w-3/4 mx-auto flex flex-col gap-4 justify-center items-center"
action="#"
>
<div class="flex flex-col md:flex-row gap-4 w-full">
<input
type="text"
class="input w-full rounded-3xl"
placeholder="First Name*"
/>
<input
type="text"
class="input w-full rounded-3xl"
placeholder="Last Name*"
/>
</div>
<div class="flex flex-col md:flex-row gap-4 w-full">
<input
type="text"
class="input w-full rounded-3xl"
placeholder="Phone Number*"
/>
<input
type="text"
class="input w-full rounded-3xl"
placeholder="Email Number*"
/>
</div>
<div class="w-full">
<textarea
class="textarea w-full rounded-3xl"
name=""
id=""
rows="6"
placeholder="Write your message here"
></textarea>
</div>
<div class="w-full">
<button
class="btn w-full rounded-3xl bg-accent font-extrabold text-black hover:bg-lime-500"
>
Send Mail
<span class="-rotate-45"
><i
class="fa-solid fa-arrow-right-long bg-black text-white p-1.5 rounded-full"
></i
></span>
</button>
</div>
</form>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<footer class="footer footer-center bg-[#1C1C1C] text-white px-4 py-16">