Spaces:
Running
Running
File size: 7,743 Bytes
7c34da2 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Personal Consultation - Astronova</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lato', sans-serif;
}
body {
background-color: #f4f4fa;
color: #2C3E50;
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
}
/* Navbar */
header {
background: linear-gradient(90deg, #ffffff, #ecebff);
color: #2C3E50;
padding: 12px 30px;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
box-shadow: 0 2px 10px rgba(44, 62, 80, 0.15);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid #e0dfff;
}
.logo-container {
display: flex;
align-items: center;
gap: 15px;
}
.logo {
height: 55px;
width: auto;
}
header h1 {
font-family: 'Playfair Display', serif;
font-size: 1.6rem;
color: #2C3E50;
}
nav {
display: flex;
gap: 18px;
flex-wrap: wrap;
align-items: center;
}
nav a {
position: relative;
text-decoration: none;
font-weight: bold;
padding: 8px 18px;
border-radius: 25px;
background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(240, 240, 255, 0.3));
color: #2C3E50;
box-shadow: inset 2px 2px 6px rgba(200, 200, 230, 0.6), inset -2px -2px 6px rgba(255, 255, 255, 0.8);
transition: all 0.3s ease;
}
nav a:hover {
background: linear-gradient(145deg, #f8f7ff, #e0dfff);
color: #6c5ce7;
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(108, 92, 231, 0.25);
}
nav a.active {
background: #6c5ce7;
color: #fff;
font-weight: bold;
box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}
/* Hero Section */
.hero {
background: url('consultation-hero.jpg') no-repeat center center/cover;
color: #fff;
text-align: center;
padding: 6rem 2rem;
position: relative;
}
.hero::after {
content: "";
position: absolute;
top: 0; left: 0; right: 0; bottom: 0;
background: rgba(0,0,0,0.5);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 800px;
margin: 0 auto;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 1rem;
font-family: 'Playfair Display', serif;
}
.hero p {
font-size: 1.2rem;
}
/* Consultation Section */
.consultation {
padding: 4rem 2rem;
max-width: 1200px;
margin: auto;
text-align: center;
}
.consultation h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
color: #6c5ce7;
font-family: 'Playfair Display', serif;
}
.consultation p {
font-size: 1.1rem;
margin-bottom: 2rem;
color: #444;
}
.consultation-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.consultation-card {
background: #fff;
padding: 2rem;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.consultation-card:hover {
transform: scale(1.05);
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.consultation-card img {
height: 80px;
margin-bottom: 1rem;
}
.consultation-card h3 {
margin-bottom: 1rem;
color: #6c5ce7;
font-family: 'Playfair Display', serif;
}
.consultation-card p {
font-size: 0.95rem;
color: #555;
}
/* Call To Action */
.cta {
background: linear-gradient(135deg, #6c5ce7, #9a89f7);
color: #fff;
text-align: center;
padding: 3rem 2rem;
margin-top: 3rem;
border-radius: 12px;
}
.cta h2 {
font-size: 2rem;
margin-bottom: 1rem;
font-family: 'Playfair Display', serif;
}
.cta a {
background: #fff;
color: #6c5ce7;
padding: 0.8rem 1.5rem;
border-radius: 8px;
font-weight: bold;
transition: 0.3s ease;
}
.cta a:hover {
background: #ecebff;
}
/* Footer */
footer {
background: #2C3E50;
color: white;
padding: 2rem;
text-align: center;
margin-top: 4rem;
}
footer img.logo {
height: 40px;
margin-bottom: 1rem;
}
footer p {
font-size: 0.9rem;
}
</style>
</head>
<body>
<!-- Navbar -->
<header>
<div class="logo-container">
<img src="logo black.png" alt="Astronova Logo" class="logo">
<h1>Astronova</h1>
</div>
<nav>
<a href="index3.html">Home</a>
<a href="about3.html">About</a>
<a href="services3.html">Our Services</a>
<a href="products3.html">Our Products</a>
<a href="booking3.html">Contact</a>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<div class="hero-content">
<h1>One-on-One Personal Consultation</h1>
<p>Authentic, real, and trustworthy astrology services — designed just for you.</p>
</div>
</section>
<!-- Consultation Section -->
<section class="consultation">
<h2>Why Choose Our Consultation?</h2>
<p>We provide personalized one-on-one consultation via Instagram messaging, WhatsApp, and even phone calls. Our team ensures daily reporting and regular updates about the rituals and status of your requests. Every client is important to us, and our expert astrologers dedicate themselves to resolving problems authentically and effectively.</p>
<div class="consultation-grid">
<div class="consultation-card">
<img src="icons/instagram.png" alt="Instagram">
<h3>Instagram Messaging</h3>
<p>Quick and easy consultation through Instagram DMs, ensuring instant connection and guidance.</p>
</div>
<div class="consultation-card">
<img src="icons/whatsapp.png" alt="WhatsApp">
<h3>WhatsApp Messaging</h3>
<p>Stay updated with daily messages and instant replies directly from our astrologers.</p>
</div>
<div class="consultation-card">
<img src="icons/phone-call.png" alt="Phone Call">
<h3>Phone Calls</h3>
<p>Speak directly with our astrology experts to gain clarity and personal guidance.</p>
</div>
<div class="consultation-card">
<img src="icons/report.png" alt="Reports">
<h3>Daily Reporting</h3>
<p>Receive regular progress updates about your rituals and requests so you never feel left behind.</p>
</div>
</div>
</section>
<!-- Call to Action -->
<section class="cta">
<h2>Book Your Personal Consultation Today</h2>
<p>Our trusted astrologers are ready to help you find clarity and solutions.</p>
<a href="booking3.html">Book Now</a>
</section>
<!-- Footer -->
<footer>
<img src="logo black.png" alt="Astronova Logo" class="logo">
<p>© 2025 Astronova. All rights reserved.</p>
<p>Contact: +91-XXXXXXXXXX | Instagram: @astronova.in</p>
</footer>
</body>
</html>
|