Shaiknoor commited on
Commit
6010350
·
verified ·
1 Parent(s): 6ec45b4

<!DOCTYPE html>

Browse files

<html lang="en">
<head>
<meta charset="UTF-8" />
<title>K Render Architect - Premium 3D Visualization Studio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
background: #05070b;
color: #f7f7f7;
line-height: 1.6;
overflow-x: hidden;
}

/* Smooth scrolling */
html {
scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }

/* Animated background gradient */
body::before {
content: '';
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 20% 50%, rgba(245,193,92,0.03) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(247,155,52,0.04) 0%, transparent 50%);
animation: gradientShift 15s ease infinite;
pointer-events: none;
z-index: 0;
}

@keyframes gradientShift {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-5%, -5%); }
}

.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}

/* Enhanced Header */
header {
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(20px) saturate(180%);
background: rgba(5,7,11,0.85);
border-bottom: 1px solid rgba(245,193,92,0.1);
box-shadow: 0 4px 30px rgba(0,0,0,0.3);
animation: slideDown 0.5s ease;
}

@keyframes slideDown {
from { transform: translateY(-100%); }
to { transform: translateY(0); }
}

.nav {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
}

.logo {
display: flex;
align-items: center;
gap: 12px;
font-weight: 700;
letter-spacing: 0.08em;
transition: transform 0.3s ease;
cursor: pointer;
}

.logo:hover {
transform: scale(1.05);
}

.logo-mark {
width: 40px;
height: 40px;
border-radius: 12px;
background: linear-gradient(135deg, #f5c15c 0%, #f79b34 100%);
display: flex;
align-items: center;
justify-content: center;
font-weight: 900;
font-size: 20px;
color: #1a1305;
box-shadow: 0 0 25px rgba(247,155,52,0.6), 0 4px 15px rgba(0,0,0,0.3);
animation: pulse 3s ease infinite;
}

@keyframes pulse {
0%, 100% { box-shadow: 0 0 25px rgba(247,155,52,0.6), 0 4px 15px rgba(0,0,0,0.3); }
50% { box-shadow: 0 0 35px rgba(247,155,52,0.8), 0 4px 20px rgba(0,0,0,0.4); }
}

nav ul {
display: flex;
gap: 28px;
list-style: none;
font-size: 14px;
text-transform: uppercase;
font-weight: 500;
letter-spacing: 0.05em;
}

nav li a {
opacity: 0.85;
transition: all 0.3s ease;
position: relative;
}

nav li a::after {
content: '';
position: absolute;
bottom: -4px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #f5c15c, #f79b34);
transition: width 0.3s ease;
}

nav li a:hover {
opacity: 1;
color: #f5c15c;
}

nav li a:hover::after {
width: 100%;
}

.nav-cta {
padding: 10px 24px;
border-radius: 999px;
background: linear-gradient(135deg, #f5c15c 0%, #f79b34 100%);
color: #1a1305;
font-size: 13px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(247,155,52,0.3);
transition: all 0.3s ease;
}

.nav-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(247,155,52,0.5);
}

/* Enhanced Hero */
.hero {
padding: 80px 0 60px;
display: grid;
grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
gap: 60px;
align-items: center;
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 6px 14px;
border-radius: 999px;
background: rgba(51,255,153,0.08);
border: 1px solid rgba(51,255,153,0.3);
font-size: 11px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 0.1em;
margin-bottom: 20px;
animation: fadeInUp 0.6s ease 0.2s both;
}

@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

.hero-badge span {
width: 8px;
height: 8px;
border-radius: 999px;
background: #33ff99;
box-shadow: 0 0 15px rgba(51,255,153,0.9);
animation: blink 2s ease infinite;
}

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.3; }
}

.hero h1 {
font-size: 48px;
line-height: 1.15;
margin-bottom: 16px;
font-weight: 800;
background: linear-gradient(135deg, #ffffff 0%, #f5c15c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
animation: fadeInUp 0.6s ease 0.3s both;
}

.hero h1 span {
display: inline-block;
background: linear-gradient(135deg, #f5c15c 0%, #f79b34 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-sub {
font-size: 16px;
opacity: 0.9;
margin-bottom: 28px;
max-width: 520px;
line-height: 1.7;
animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 32px;
animation: fadeInUp 0.6s ease 0.5s both;
}

.tag {
padding: 6px 14px;
border-radius: 999px;
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.15);
font-size: 12px;
font-weight: 500;
opacity: 0.9;
transition: all 0.3s ease;
cursor: default;
}

.tag:hover {
background: rgba(245,193,92,0.1);
border-color: rgba(245,193,92,0.4);
transform: translateY(-2px);
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
align-items: center;
animation: fadeInUp 0.6s ease 0.6s both;
}

.btn-primary {
padding: 14px 32px;
border-radius: 999px;
border: none;
background: linear-gradient(135deg, #f5c15c 0%, #f79b34 100%);
color: #1a1305;
font-weight: 700;
font-size: 14px;
cursor: pointer;
box-shadow: 0 8px 30px rgba(247,155,52,0.4);
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 12px 40px rgba(247,155,52,0.6);
}

.btn-ghost {
padding: 13px 28px;
border-radius: 999px;
border: 1px solid rgba(255,255,255,0.25);
font-size: 14px;
font-weight: 600;
cursor: pointer;
background: rgba(255,255,255,0.03);
color: #f7f7f7;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
}

.btn-ghost:hover {
background: rgba(255,255,255,0.08);
border-color: rgba(245,193,92,0.5);
transform: translateY(-2px);
}

.hero-note {
font-size: 12px;
opacity: 0.6;
margin-top: 12px;
font-style: italic;
}

.hero-right {
position: relative;
animation: fadeInRight 0.8s ease 0.4s both;
}

@keyframes fadeInRight {
from { opacity: 0; transform: translateX(30px); }
to { opacity: 1; transform: translateX(0); }
}

.hero-card {
border-radius: 30px;
padding: 18px;
background: radial-gradient(circle at top left, rgba(50,55,68,0.6), rgba(9,12,18,0.9) 60%);
border: 1px solid rgba(245,193,92,0.15);
box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 40px rgba(245,193,92,0.1);
transition: all 0.5s ease;
}

.hero-card:hover {
transform: translateY(-5px);
box-shadow: 0 35px 90px rgba(0,0,0,0.9), 0 0 50px rgba(245,193,92,0.15);
}

.hero-main-image {
width: 100%;
border-radius: 24px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.12);
position: relative;
background: linear-gradient(135deg, #1a1d26, #0a0c11);
aspect-ratio: 16/10;
}

.hero-main-image::before {
content: 'SAMPLE RENDER';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 14px;
font-weight: 700;
color: rgba(245,193,92,0.3);
letter-spacing: 0.2em;
z-index: 1;
}

.hero-main-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}

.hero-card:hover .hero-main-image img {
transform: scale(1.05);
}

.hero-top {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
font-size: 12px;
opacity: 0.9;
font-weight: 500;
}

.hero-chip {
padding: 5px 12px;
border-radius: 99px;
background: rgba(245,193,92,0.15);
border: 1px solid rgba(245,193,92,0.3);
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: 700;
color: #f5c15c;
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 14px;
padding-top: 14px;
border-top: 1px solid rgba(255,255,255,0.08);
font-size: 11px;
text-align: center;
}

.hero-stats div span {
display: block;
font-size: 20px;
font-weight: 700;
background: linear-gradient(135deg, #f5c15c, #f79b34);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 4px;
}

/* Enhanced Section */
.section {
padding: 60px 0;
position: relative;
}

Files changed (4) hide show
  1. README.md +8 -5
  2. index.html +283 -19
  3. script.js +36 -0
  4. style.css +43 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: K Render Architect
3
- emoji: 🚀
4
- colorFrom: pink
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
  ---
2
+ title: K Render Architect 🎨
3
+ colorFrom: purple
4
+ colorTo: green
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,283 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>K Render Architect - Premium 3D Visualization Studio</title>
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <link rel="stylesheet" href="style.css">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ </head>
12
+ <body class="bg-white text-gray-900 font-sans">
13
+ <header class="sticky top-0 z-50 backdrop-blur-lg bg-white/80 border-b border-rose-100 shadow-sm">
14
+ <div class="container mx-auto px-4 py-4 flex items-center justify-between">
15
+ <div class="flex items-center gap-3">
16
+ <div class="w-10 h-10 rounded-xl bg-gradient-to-br from-rose-500 to-orange-500 flex items-center justify-center font-bold text-white shadow-lg">
17
+ K
18
+ </div>
19
+ <div>
20
+ <div class="text-lg font-bold">K Render Architect</div>
21
+ <div class="text-xs text-gray-500">Premium 3D Visualisation</div>
22
+ </div>
23
+ </div>
24
+
25
+ <nav class="hidden md:flex items-center gap-8">
26
+ <a href="#services" class="text-gray-600 hover:text-rose-500 font-medium transition-colors">Services</a>
27
+ <a href="#portfolio" class="text-gray-600 hover:text-rose-500 font-medium transition-colors">Portfolio</a>
28
+ <a href="#contact" class="text-gray-600 hover:text-rose-500 font-medium transition-colors">Contact</a>
29
+ </nav>
30
+
31
+ <a href="https://wa.me/918830079952" target="_blank" class="bg-gradient-to-r from-rose-500 to-orange-500 text-white px-5 py-2 rounded-full text-sm font-semibold shadow-md hover:shadow-lg transition-all">
32
+ WhatsApp Enquiry
33
+ </a>
34
+ </div>
35
+ </header>
36
+
37
+ <main class="container mx-auto px-4">
38
+ <section class="py-16 md:py-24 grid md:grid-cols-2 gap-12 items-center">
39
+ <div class="order-2 md:order-1">
40
+ <div class="inline-flex items-center gap-2 px-4 py-2 bg-green-50 border border-green-200 rounded-full text-sm font-medium text-green-700 mb-6">
41
+ <span class="w-2 h-2 rounded-full bg-green-500 animate-pulse"></span>
42
+ High-end 3D Visualisation
43
+ </div>
44
+
45
+ <h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">
46
+ Turning <span class="bg-gradient-to-r from-rose-500 to-orange-500 bg-clip-text text-transparent">blueprints</span> into photoreal
47
+ <span class="bg-gradient-to-r from-rose-500 to-orange-500 bg-clip-text text-transparent">visual reality</span>
48
+ </h1>
49
+
50
+ <p class="text-gray-600 text-lg mb-8 max-w-2xl">
51
+ Exterior facades, luxury interiors & walkthrough-ready 3D visuals –
52
+ crafted for architects, builders and premium homeowners across India.
53
+ </p>
54
+
55
+ <div class="flex flex-wrap gap-2 mb-8">
56
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">3D Modeling</span>
57
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Exterior & Interior</span>
58
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Walkthrough Ready</span>
59
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">4K Renders</span>
60
+ <span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Fast Turnaround</span>
61
+ </div>
62
+
63
+ <div class="flex flex-wrap gap-4">
64
+ <a href="#portfolio" class="bg-gradient-to-r from-rose-500 to-orange-500 text-white px-6 py-3 rounded-full font-semibold shadow-md hover:shadow-lg transition-all">
65
+ View Portfolio
66
+ </a>
67
+ <a href="https://www.instagram.com/k_renderarchitect" target="_blank" class="border border-gray-300 px-6 py-3 rounded-full font-semibold hover:bg-gray-50 transition-colors">
68
+ Instagram Gallery
69
+ </a>
70
+ </div>
71
+
72
+ <p class="mt-6 text-sm text-gray-500 italic">
73
+ *Demo website design – content & visuals customizable per your brand
74
+ </p>
75
+ </div>
76
+
77
+ <div class="order-1 md:order-2">
78
+ <div class="bg-gradient-to-br from-gray-50 to-white rounded-3xl p-6 border border-rose-100 shadow-lg">
79
+ <div class="flex justify-between items-center mb-4">
80
+ <div class="text-sm text-gray-600">Featured Residence – 3D Front Elevation</div>
81
+ <div class="px-3 py-1 bg-rose-100 text-rose-700 rounded-full text-xs font-semibold">Sample</div>
82
+ </div>
83
+
84
+ <div class="aspect-video bg-gradient-to-br from-gray-200 to-gray-300 rounded-xl overflow-hidden mb-4 relative">
85
+ <img src="http://static.photos/architecture/640x360/1" alt="Modern villa 3D elevation" class="w-full h-full object-cover">
86
+ <div class="absolute inset-0 flex items-center justify-center text-gray-500 font-bold text-sm tracking-widest">
87
+ SAMPLE RENDER
88
+ </div>
89
+ </div>
90
+
91
+ <div class="grid grid-cols-3 gap-4 text-center pt-4 border-t border-gray-200">
92
+ <div>
93
+ <div class="text-xl font-bold bg-gradient-to-r from-rose-500 to-orange-500 bg-clip-text text-transparent">40+</div>
94
+ <div class="text-xs text-gray-600">Projects</div>
95
+ </div>
96
+ <div>
97
+ <div class="text-xl font-bold bg-gradient-to-r from-rose-500 to-orange-500 bg-clip-text text-transparent">20+</div>
98
+ <div class="text-xs text-gray-600">Interiors</div>
99
+ </div>
100
+ <div>
101
+ <div class="text-xl font-bold bg-gradient-to-r from-rose-500 to-orange-500 bg-clip-text text-transparent">4K</div>
102
+ <div class="text-xs text-gray-600">Quality</div>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ </section>
108
+
109
+ <section id="services" class="py-16 md:py-24">
110
+ <div class="text-center max-w-2xl mx-auto mb-16">
111
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Services for Architects & Builders</h2>
112
+ <p class="text-gray-600">
113
+ From concept to final render – detailed 3D visuals so your clients can see
114
+ the project before construction begins.
115
+ </p>
116
+ </div>
117
+
118
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
119
+ <div class="bg-white rounded-2xl border border-gray-200 p-6 hover:shadow-lg transition-all group">
120
+ <div class="text-xs text-rose-500 font-semibold mb-2">01 · Exterior Elevation</div>
121
+ <h3 class="text-xl font-bold mb-3">Modern Facade Designs</h3>
122
+ <p class="text-gray-600 mb-4">
123
+ Clean, geometric and premium exteriors for villas, bungalows and multi-storey
124
+ buildings tailored to your architectural drawings.
125
+ </p>
126
+ <span class="inline-block px-3 py-1 bg-rose-50 text-rose-700 rounded-full text-xs font-medium">Front & side views</span>
127
+ </div>
128
+
129
+ <div class="bg-white rounded-2xl border border-gray-200 p-6 hover:shadow-lg transition-all group">
130
+ <div class="text-xs text-rose-500 font-semibold mb-2">02 · Interior Visualisation</div>
131
+ <h3 class="text-xl font-bold mb-3">Luxury Interior Renders</h3>
132
+ <p class="text-gray-600 mb-4">
133
+ Living rooms, bedrooms, kitchens & bathrooms with realistic materials,
134
+ lighting and atmospheric mood.
135
+ </p>
136
+ <span class="inline-block px-3 py-1 bg-rose-50 text-rose-700 rounded-full text-xs font-medium">Photo-realistic quality</span>
137
+ </div>
138
+
139
+ <div class="bg-white rounded-2xl border border-gray-200 p-6 hover:shadow-lg transition-all group">
140
+ <div class="text-xs text-rose-500 font-semibold mb-2">03 · Walkthrough Support</div>
141
+ <h3 class="text-xl font-bold mb-3">Video Tour Concepts</h3>
142
+ <p class="text-gray-600 mb-4">
143
+ Camera-ready frames optimized for smooth walkthrough videos and
144
+ compelling marketing reels.
145
+ </p>
146
+ <span class="inline-block px-3 py-1 bg-rose-50 text-rose-700 rounded-full text-xs font-medium">Reel-friendly layouts</span>
147
+ </div>
148
+
149
+ <div class="bg-white rounded-2xl border border-gray-200 p-6 hover:shadow-lg transition-all group">
150
+ <div class="text-xs text-rose-500 font-semibold mb-2">04 · Marketing Ready</div>
151
+ <h3 class="text-xl font-bold mb-3">Social Media Visuals</h3>
152
+ <p class="text-gray-600 mb-4">
153
+ Renders optimized for Instagram, brochures and advertising creatives for
154
+ effective real-estate promotion.
155
+ </p>
156
+ <span class="inline-block px-3 py-1 bg-rose-50 text-rose-700 rounded-full text-xs font-medium">High-res exports</span>
157
+ </div>
158
+ </div>
159
+ </section>
160
+
161
+ <section id="portfolio" class="py-16 md:py-24">
162
+ <div class="text-center max-w-2xl mx-auto mb-16">
163
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">Featured 3D Projects</h2>
164
+ <p class="text-gray-600">
165
+ Sample renders showcasing residential facades and interiors.
166
+ All projects customizable to your specifications.
167
+ </p>
168
+ </div>
169
+
170
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
171
+ <div class="rounded-2xl overflow-hidden border border-gray-200 hover:shadow-xl transition-all group">
172
+ <div class="aspect-[4/3] bg-gradient-to-br from-gray-200 to-gray-300 relative">
173
+ <img src="http://static.photos/architecture/640x360/2" alt="K Render Architect - 3D Elevation Project" class="w-full h-full object-cover">
174
+ <div class="absolute inset-0 flex items-center justify-center text-gray-500 font-bold text-xs tracking-widest">
175
+ SAMPLE PROJECT
176
+ </div>
177
+ </div>
178
+ <div class="p-4 bg-white">
179
+ <h4 class="font-bold mb-2">Contemporary 3-Storey Residence</h4>
180
+ <div class="flex justify-between text-xs text-gray-500">
181
+ <span>Exterior Elevation</span>
182
+ <span>K Render Project</span>
183
+ </div>
184
+ </div>
185
+ </div>
186
+
187
+ <div class="rounded-2xl overflow-hidden border border-gray-200 hover:shadow-xl transition-all group">
188
+ <div class="aspect-[4/3] bg-gradient-to-br from-gray-200 to-gray-300 relative">
189
+ <img src="http://static.photos/interior/640x360/3" alt="K Render Architect - Interior Design" class="w-full h-full object-cover">
190
+ <div class="absolute inset-0 flex items-center justify-center text-gray-500 font-bold text-xs tracking-widest">
191
+ SAMPLE PROJECT
192
+ </div>
193
+ </div>
194
+ <div class="p-4 bg-white">
195
+ <h4 class="font-bold mb-2">Luxury Living Space</h4>
196
+ <div class="flex justify-between text-xs text-gray-500">
197
+ <span>Interior Visualisation</span>
198
+ <span>K Render Project</span>
199
+ </div>
200
+ </div>
201
+ </div>
202
+
203
+ <div class="rounded-2xl overflow-hidden border border-gray-200 hover:shadow-xl transition-all group">
204
+ <div class="aspect-[4/3] bg-gradient-to-br from-gray-200 to-gray-300 relative">
205
+ <img src="http://static.photos/architecture/640x360/4" alt="K Render Architect - 3D Visualization" class="w-full h-full object-cover">
206
+ <div class="absolute inset-0 flex items-center justify-center text-gray-500 font-bold text-xs tracking-widest">
207
+ SAMPLE PROJECT
208
+ </div>
209
+ </div>
210
+ <div class="p-4 bg-white">
211
+ <h4 class="font-bold mb-2">Modern Architecture Design</h4>
212
+ <div class="flex justify-between text-xs text-gray-500">
213
+ <span>3D Visualization</span>
214
+ <span>K Render Project</span>
215
+ </div>
216
+ </div>
217
+ </div>
218
+
219
+ <div class="rounded-2xl overflow-hidden border border-gray-200 hover:shadow-xl transition-all group">
220
+ <div class="aspect-[4/3] bg-gradient-to-br from-gray-200 to-gray-300 relative">
221
+ <img src="http://static.photos/architecture/640x360/5" alt="K Render Architect - Premium Elevation" class="w-full h-full object-cover">
222
+ <div class="absolute inset-0 flex items-center justify-center text-gray-500 font-bold text-xs tracking-widest">
223
+ SAMPLE PROJECT
224
+ </div>
225
+ </div>
226
+ <div class="p-4 bg-white">
227
+ <h4 class="font-bold mb-2">Premium Villa Elevation</h4>
228
+ <div class="flex justify-between text-xs text-gray-500">
229
+ <span>Exterior Design</span>
230
+ <span>K Render Project</span>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </section>
236
+
237
+ <section id="contact" class="py-16 md:py-24">
238
+ <div class="bg-gradient-to-br from-rose-50 to-orange-50 rounded-3xl p-8 md:p-12 border border-rose-100">
239
+ <div class="max-w-3xl">
240
+ <h3 class="text-3xl font-bold mb-4">Discuss Your Next Project</h3>
241
+ <p class="text-gray-700 text-lg mb-8">
242
+ Floor plan ready hai? Bas WhatsApp par send kijiye. Hum aapke liye
243
+ facade & interior ka 3D concept bana dete hain – client ko samjhana easy ho jayega.
244
+ </p>
245
+
246
+ <div class="flex flex-wrap gap-4 mb-8">
247
+ <a href="https://wa.me/918830079952" target="_blank" class="bg-gradient-to-r from-rose-500 to-orange-500 text-white px-6 py-3 rounded-full font-semibold shadow-md hover:shadow-lg transition-all">
248
+ WhatsApp Brief
249
+ </a>
250
+ <a href="tel:+918830079952" class="border border-gray-300 px-6 py-3 rounded-full font-semibold hover:bg-white transition-colors">
251
+ Quick Call
252
+ </a>
253
+ </div>
254
+
255
+ <p class="text-sm text-gray-500 italic mb-8">
256
+ *Ye ek demo website layout hai. Text, colors aur renders aapke brand ke hisaab se customize kiye ja sakte hain.
257
+ </p>
258
+
259
+ <div class="pt-8 border-t border-rose-100">
260
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
261
+ <div><span class="font-semibold text-rose-600">Studio:</span> K Render Architect</div>
262
+ <div><span class="font-semibold text-rose-600">Phone:</span> +91 88300 79952</div>
263
+ <div><span class="font-semibold text-rose-600">Instagram:</span> @k_renderarchitect</div>
264
+ <div><span class="font-semibold text-rose-600">Services:</span> 3D Elevation · Interior Renders · Walkthrough</div>
265
+ <div><span class="font-semibold text-rose-600">Delivery:</span> Fast turnaround with revisions</div>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ </div>
270
+ </section>
271
+ </main>
272
+
273
+ <footer class="py-8 border-t border-gray-200 text-center text-gray-500 text-sm">
274
+ <div class="container mx-auto px-4">
275
+ © <span id="year"></span> K Render Architect · Premium 3D Visualisation Studio · Demo Website Design
276
+ </div>
277
+ </footer>
278
+
279
+ <script src="script.js"></script>
280
+ <script>feather.replace();</script>
281
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
282
+ </body>
283
+ </html>
script.js ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // Set current year in footer
2
+ document.getElementById('year').textContent = new Date().getFullYear();
3
+
4
+ // Smooth scroll with offset for fixed header
5
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
6
+ anchor.addEventListener('click', function (e) {
7
+ e.preventDefault();
8
+ const target = document.querySelector(this.getAttribute('href'));
9
+ if (target) {
10
+ const offset = 80;
11
+ const targetPosition = target.offsetTop - offset;
12
+ window.scrollTo({
13
+ top: targetPosition,
14
+ behavior: 'smooth'
15
+ });
16
+ }
17
+ });
18
+ });
19
+
20
+ // Add scroll animation to elements
21
+ const observerOptions = {
22
+ threshold: 0.1,
23
+ rootMargin: '0px 0px -50px 0px'
24
+ };
25
+
26
+ const observer = new IntersectionObserver((entries) => {
27
+ entries.forEach(entry => {
28
+ if (entry.isIntersecting) {
29
+ entry.target.classList.add('visible');
30
+ }
31
+ });
32
+ }, observerOptions);
33
+
34
+ document.querySelectorAll('.service-card, .portfolio-card').forEach(el => {
35
+ observer.observe(el);
36
+ });
style.css CHANGED
@@ -1,28 +1,53 @@
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
1
+ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
2
+
3
  body {
4
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
5
+ scroll-behavior: smooth;
6
+ }
7
+
8
+ .container {
9
+ max-width: 1200px;
10
  }
11
 
12
+ /* Smooth animations */
13
+ .service-card, .portfolio-card {
14
+ opacity: 0;
15
+ transform: translateY(30px);
16
+ transition: all 0.6s ease;
17
  }
18
 
19
+ .service-card.visible, .portfolio-card.visible {
20
+ opacity: 1;
21
+ transform: translateY(0);
 
 
22
  }
23
 
24
+ /* Gradient backgrounds */
25
+ .bg-gradient-primary {
26
+ background: linear-gradient(135deg, #f43f5e, #f97316);
 
 
 
27
  }
28
 
29
+ /* Responsive adjustments */
30
+ @media (max-width: 768px) {
31
+ .hero {
32
+ grid-template-columns: 1fr;
33
+ gap: 2rem;
34
+ }
35
+
36
+ .hero-right {
37
+ order: -1;
38
+ }
39
+
40
+ .section-title {
41
+ font-size: 2rem;
42
+ }
43
  }
44
+
45
+ /* Loading animation */
46
+ @keyframes fadeIn {
47
+ from { opacity: 0; }
48
+ to { opacity: 1; }
49
+ }
50
+
51
+ body {
52
+ animation: fadeIn 0.5s ease;
53
+ }