Spaces:
Running
Running
Upload 15 files
Browse files- about3.html +168 -0
- booking3.html +207 -0
- consultation.html +298 -0
- conversation.png +0 -0
- index3.html +237 -0
- logo black.png +0 -0
- logo.png +0 -0
- logo2.png +0 -0
- logo3.png +0 -0
- mind.png +0 -0
- services3.html +173 -0
- spell-book.png +0 -0
- spells.html +97 -0
- time-management.png +0 -0
- vashikaran.html +108 -0
about3.html
ADDED
@@ -0,0 +1,168 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>About Us | Astronova</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* {
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
box-sizing: border-box;
|
13 |
+
font-family: 'Lato', sans-serif;
|
14 |
+
}
|
15 |
+
|
16 |
+
body {
|
17 |
+
background-color: #f4f4fa;
|
18 |
+
color: #2C3E50;
|
19 |
+
}
|
20 |
+
|
21 |
+
header {
|
22 |
+
background-color: #2C3E50;
|
23 |
+
color: white;
|
24 |
+
padding: 10px 30px;
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
justify-content: space-between;
|
28 |
+
}
|
29 |
+
|
30 |
+
.logo-container {
|
31 |
+
display: flex;
|
32 |
+
align-items: center;
|
33 |
+
gap: 15px;
|
34 |
+
}
|
35 |
+
|
36 |
+
.logo {
|
37 |
+
height: 80px; /* Zoom in logo size */
|
38 |
+
width: auto;
|
39 |
+
}
|
40 |
+
|
41 |
+
|
42 |
+
header h1 {
|
43 |
+
font-family: 'Playfair Display', serif;
|
44 |
+
}
|
45 |
+
|
46 |
+
nav {
|
47 |
+
display: flex;
|
48 |
+
justify-content: center;
|
49 |
+
gap: 30px;
|
50 |
+
margin-top: 10px;
|
51 |
+
}
|
52 |
+
|
53 |
+
nav a {
|
54 |
+
color: white;
|
55 |
+
text-decoration: none;
|
56 |
+
font-weight: bold;
|
57 |
+
}
|
58 |
+
|
59 |
+
.hero {
|
60 |
+
background: linear-gradient(to right, #d6d6f5, #ffffff);
|
61 |
+
text-align: center;
|
62 |
+
padding: 60px 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.hero h2 {
|
66 |
+
font-size: 2.5rem;
|
67 |
+
color: #2C3E50;
|
68 |
+
font-family: 'Playfair Display', serif;
|
69 |
+
}
|
70 |
+
|
71 |
+
.hero p {
|
72 |
+
margin: 20px 0;
|
73 |
+
font-size: 1.2rem;
|
74 |
+
}
|
75 |
+
|
76 |
+
.section {
|
77 |
+
padding: 40px 20px;
|
78 |
+
max-width: 1100px;
|
79 |
+
margin: auto;
|
80 |
+
}
|
81 |
+
|
82 |
+
.card {
|
83 |
+
background: white;
|
84 |
+
padding: 20px;
|
85 |
+
border-radius: 10px;
|
86 |
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
87 |
+
margin-bottom: 30px;
|
88 |
+
}
|
89 |
+
|
90 |
+
.footer {
|
91 |
+
background-color: #2C3E50;
|
92 |
+
color: white;
|
93 |
+
padding: 20px;
|
94 |
+
text-align: center;
|
95 |
+
font-size: 0.9rem;
|
96 |
+
margin-top: 40px;
|
97 |
+
}
|
98 |
+
|
99 |
+
.cta-button {
|
100 |
+
display: inline-block;
|
101 |
+
margin-top: 20px;
|
102 |
+
padding: 12px 25px;
|
103 |
+
background-color: #F1C40F;
|
104 |
+
color: #2C3E50;
|
105 |
+
font-weight: bold;
|
106 |
+
border-radius: 5px;
|
107 |
+
text-decoration: none;
|
108 |
+
}
|
109 |
+
|
110 |
+
.cta-button:hover {
|
111 |
+
background-color: #d4a90f;
|
112 |
+
}
|
113 |
+
</style>
|
114 |
+
</head>
|
115 |
+
<body>
|
116 |
+
|
117 |
+
<header>
|
118 |
+
<div class="logo-container">
|
119 |
+
<img src="logo.png" alt="Astronova Logo" class="logo">
|
120 |
+
<h1>Astronova</h1>
|
121 |
+
</div>
|
122 |
+
<nav>
|
123 |
+
<li><a href="index3.html">Home</a></li>
|
124 |
+
<a href="about3.html">About</a>
|
125 |
+
<a href="services3.html">Our Services</a>
|
126 |
+
<a href="booking3.html">Contact</a>
|
127 |
+
</nav>
|
128 |
+
</header>
|
129 |
+
|
130 |
+
<section class="hero">
|
131 |
+
<h2>About Astronova</h2>
|
132 |
+
<p>Your trusted partner for solving life’s challenges through astrology and spiritual guidance.</p>
|
133 |
+
</section>
|
134 |
+
|
135 |
+
<section class="section">
|
136 |
+
<div class="card">
|
137 |
+
<h3>Our Story</h3>
|
138 |
+
<p>Astronova was founded in 2024 with a simple yet powerful mission — to help people overcome their everyday struggles and live a peaceful, positive, and fulfilling life. Our journey began with a passion for astrology and a belief that age-old wisdom can guide modern lives towards happiness and success.</p>
|
139 |
+
</div>
|
140 |
+
|
141 |
+
<div class="card">
|
142 |
+
<h3>What We Do</h3>
|
143 |
+
<p>We offer both products and services designed to meet your specific needs. Our services include <strong>Spells</strong> and <strong>Vashikaran</strong>, tailored to resolve personal, professional, and emotional challenges. Our products range from astrological tools like spiritual candles, protective charms, healing crystals, and talismans to custom-made astrological goods for your unique situation.</p>
|
144 |
+
</div>
|
145 |
+
|
146 |
+
<div class="card">
|
147 |
+
<h3>Why Choose Us</h3>
|
148 |
+
<p>At Astronova, we stand apart by offering a <strong>100% guarantee</strong> on our solutions. If we are unable to resolve your problem, we provide a full refund — no questions asked. Our expert team ensures continuous guidance, support, and clarity so you feel empowered every step of the way.</p>
|
149 |
+
</div>
|
150 |
+
|
151 |
+
<div class="card">
|
152 |
+
<h3>Our Mission</h3>
|
153 |
+
<p>We are committed to enabling people to live happily and healthily, without the weight of unresolved problems. Our goal is to make the world a better place, one solution at a time, by spreading positivity, trust, and hope in every life we touch.</p>
|
154 |
+
</div>
|
155 |
+
|
156 |
+
<div class="card" style="text-align: center;">
|
157 |
+
<h3>Start Your Journey with Us</h3>
|
158 |
+
<p>Whether you are seeking guidance, solutions, or spiritual tools, Astronova is here to walk with you towards a brighter future.</p>
|
159 |
+
<a href="booking.html" class="cta-button">Book Your Consultation</a>
|
160 |
+
</div>
|
161 |
+
</section>
|
162 |
+
|
163 |
+
<footer class="footer">
|
164 |
+
© 2025 Astronova. All rights reserved.
|
165 |
+
</footer>
|
166 |
+
|
167 |
+
</body>
|
168 |
+
</html>
|
booking3.html
ADDED
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
+
<title>Book Your Slot | Astronova</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* {
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
box-sizing: border-box;
|
13 |
+
font-family: 'Lato', sans-serif;
|
14 |
+
}
|
15 |
+
|
16 |
+
body {
|
17 |
+
background-color: #f4f4fa;
|
18 |
+
color: #2C3E50;
|
19 |
+
}
|
20 |
+
|
21 |
+
header {
|
22 |
+
background-color: #2C3E50;
|
23 |
+
color: white;
|
24 |
+
padding: 10px 30px;
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
justify-content: space-between;
|
28 |
+
}
|
29 |
+
|
30 |
+
.logo-container {
|
31 |
+
display: flex;
|
32 |
+
align-items: center;
|
33 |
+
gap: 15px;
|
34 |
+
}
|
35 |
+
|
36 |
+
.logo {
|
37 |
+
height: 80px; /* Zoom in logo size */
|
38 |
+
width: auto;
|
39 |
+
}
|
40 |
+
|
41 |
+
header h1 {
|
42 |
+
font-family: 'Playfair Display', serif;
|
43 |
+
font-size: 2rem;
|
44 |
+
}
|
45 |
+
|
46 |
+
nav {
|
47 |
+
display: flex;
|
48 |
+
justify-content: center;
|
49 |
+
gap: 30px;
|
50 |
+
margin-top: 10px;
|
51 |
+
}
|
52 |
+
|
53 |
+
nav a {
|
54 |
+
color: white;
|
55 |
+
text-decoration: none;
|
56 |
+
font-weight: bold;
|
57 |
+
}
|
58 |
+
|
59 |
+
.hero {
|
60 |
+
background: linear-gradient(to right, #d6d6f5, #ffffff);
|
61 |
+
text-align: center;
|
62 |
+
padding: 60px 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.hero h2 {
|
66 |
+
font-size: 2.5rem;
|
67 |
+
color: #2C3E50;
|
68 |
+
font-family: 'Playfair Display', serif;
|
69 |
+
}
|
70 |
+
|
71 |
+
.hero p {
|
72 |
+
margin: 20px 0;
|
73 |
+
font-size: 1.2rem;
|
74 |
+
}
|
75 |
+
|
76 |
+
.booking-container {
|
77 |
+
max-width: 600px;
|
78 |
+
margin: 60px auto;
|
79 |
+
padding: 40px;
|
80 |
+
background-color: #fff;
|
81 |
+
border-radius: 15px;
|
82 |
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
|
83 |
+
}
|
84 |
+
|
85 |
+
.booking-container h2 {
|
86 |
+
text-align: center;
|
87 |
+
margin-bottom: 30px;
|
88 |
+
color: #2C3E50;
|
89 |
+
}
|
90 |
+
|
91 |
+
.booking-form label {
|
92 |
+
display: block;
|
93 |
+
margin-bottom: 8px;
|
94 |
+
font-weight: 500;
|
95 |
+
color: #2C3E50;
|
96 |
+
}
|
97 |
+
|
98 |
+
.booking-form input,
|
99 |
+
.booking-form textarea {
|
100 |
+
width: 100%;
|
101 |
+
padding: 12px 15px;
|
102 |
+
margin-bottom: 20px;
|
103 |
+
border: 1px solid #ccc;
|
104 |
+
border-radius: 8px;
|
105 |
+
font-size: 15px;
|
106 |
+
transition: border 0.3s ease;
|
107 |
+
}
|
108 |
+
|
109 |
+
.booking-form input:focus,
|
110 |
+
.booking-form textarea:focus {
|
111 |
+
border-color: #5e72e4;
|
112 |
+
outline: none;
|
113 |
+
}
|
114 |
+
|
115 |
+
.booking-form textarea {
|
116 |
+
resize: vertical;
|
117 |
+
min-height: 100px;
|
118 |
+
}
|
119 |
+
|
120 |
+
.booking-form button {
|
121 |
+
width: 100%;
|
122 |
+
background-color: #F1C40F;
|
123 |
+
color: #2C3E50;
|
124 |
+
border: none;
|
125 |
+
padding: 14px;
|
126 |
+
font-size: 16px;
|
127 |
+
font-weight: bold;
|
128 |
+
border-radius: 8px;
|
129 |
+
cursor: pointer;
|
130 |
+
transition: background-color 0.3s ease;
|
131 |
+
}
|
132 |
+
|
133 |
+
.booking-form button:hover {
|
134 |
+
background-color: #d4ac0d;
|
135 |
+
}
|
136 |
+
|
137 |
+
footer {
|
138 |
+
background-color: #2C3E50;
|
139 |
+
color: white;
|
140 |
+
padding: 20px;
|
141 |
+
text-align: center;
|
142 |
+
font-size: 0.9rem;
|
143 |
+
margin-top: 60px;
|
144 |
+
}
|
145 |
+
|
146 |
+
@media (max-width: 600px) {
|
147 |
+
nav {
|
148 |
+
flex-direction: column;
|
149 |
+
gap: 15px;
|
150 |
+
}
|
151 |
+
|
152 |
+
.booking-container {
|
153 |
+
margin: 40px 20px;
|
154 |
+
padding: 30px 20px;
|
155 |
+
}
|
156 |
+
}
|
157 |
+
</style>
|
158 |
+
</head>
|
159 |
+
<body>
|
160 |
+
|
161 |
+
<!-- Header -->
|
162 |
+
<header>
|
163 |
+
<div class="logo-container">
|
164 |
+
<img src="logo.png" alt="Astronova Logo" class="logo">
|
165 |
+
<h1>Astronova</h1>
|
166 |
+
</div>
|
167 |
+
<nav>
|
168 |
+
<li><a href="index3.html">Home</a></li>
|
169 |
+
<a href="about3.html">About</a>
|
170 |
+
<a href="services3.html">Our Services</a>
|
171 |
+
<a href="booking3.html">Contact</a>
|
172 |
+
</nav>
|
173 |
+
</header>
|
174 |
+
|
175 |
+
<!-- Hero Section -->
|
176 |
+
<section class="hero">
|
177 |
+
<h2>Book Your Slot</h2>
|
178 |
+
<p>Share your details and let us help you find the answers you seek.</p>
|
179 |
+
</section>
|
180 |
+
|
181 |
+
<!-- Booking Form -->
|
182 |
+
<div class="booking-container">
|
183 |
+
<h2>Enter Your Details</h2>
|
184 |
+
<form action="https://formspree.io/f/xdkdjaaw" method="POST" class="booking-form">
|
185 |
+
<label for="name">Full Name</label>
|
186 |
+
<input type="text" id="name" name="name" placeholder="Your full name" required />
|
187 |
+
|
188 |
+
<label for="dob">Date of Birth</label>
|
189 |
+
<input type="date" id="dob" name="dob" required />
|
190 |
+
|
191 |
+
<label for="phone">Phone Number</label>
|
192 |
+
<input type="tel" id="phone" name="phone" placeholder="e.g., +91 9876543210" required />
|
193 |
+
|
194 |
+
<label for="issue">Describe Your Problem</label>
|
195 |
+
<textarea id="issue" name="issue" placeholder="Briefly describe your concern" required></textarea>
|
196 |
+
|
197 |
+
<button type="submit">Book Now</button>
|
198 |
+
</form>
|
199 |
+
</div>
|
200 |
+
|
201 |
+
<!-- Footer -->
|
202 |
+
<footer>
|
203 |
+
© 2025 Astronova. All rights reserved.
|
204 |
+
</footer>
|
205 |
+
|
206 |
+
</body>
|
207 |
+
</html>
|
consultation.html
ADDED
@@ -0,0 +1,298 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Personal Consultation - Astronova</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* {
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
box-sizing: border-box;
|
13 |
+
font-family: 'Lato', sans-serif;
|
14 |
+
}
|
15 |
+
|
16 |
+
body {
|
17 |
+
background-color: #f4f4fa;
|
18 |
+
color: #2C3E50;
|
19 |
+
line-height: 1.6;
|
20 |
+
}
|
21 |
+
|
22 |
+
a {
|
23 |
+
text-decoration: none;
|
24 |
+
color: inherit;
|
25 |
+
}
|
26 |
+
|
27 |
+
/* Navbar */
|
28 |
+
header {
|
29 |
+
background: linear-gradient(90deg, #ffffff, #ecebff);
|
30 |
+
color: #2C3E50;
|
31 |
+
padding: 12px 30px;
|
32 |
+
display: flex;
|
33 |
+
align-items: center;
|
34 |
+
justify-content: space-between;
|
35 |
+
flex-wrap: wrap;
|
36 |
+
box-shadow: 0 2px 10px rgba(44, 62, 80, 0.15);
|
37 |
+
position: sticky;
|
38 |
+
top: 0;
|
39 |
+
z-index: 1000;
|
40 |
+
border-bottom: 2px solid #e0dfff;
|
41 |
+
}
|
42 |
+
|
43 |
+
.logo-container {
|
44 |
+
display: flex;
|
45 |
+
align-items: center;
|
46 |
+
gap: 15px;
|
47 |
+
}
|
48 |
+
|
49 |
+
.logo {
|
50 |
+
height: 55px;
|
51 |
+
width: auto;
|
52 |
+
}
|
53 |
+
|
54 |
+
header h1 {
|
55 |
+
font-family: 'Playfair Display', serif;
|
56 |
+
font-size: 1.6rem;
|
57 |
+
color: #2C3E50;
|
58 |
+
}
|
59 |
+
|
60 |
+
nav {
|
61 |
+
display: flex;
|
62 |
+
gap: 18px;
|
63 |
+
flex-wrap: wrap;
|
64 |
+
align-items: center;
|
65 |
+
}
|
66 |
+
|
67 |
+
nav a {
|
68 |
+
position: relative;
|
69 |
+
text-decoration: none;
|
70 |
+
font-weight: bold;
|
71 |
+
padding: 8px 18px;
|
72 |
+
border-radius: 25px;
|
73 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(240, 240, 255, 0.3));
|
74 |
+
color: #2C3E50;
|
75 |
+
box-shadow: inset 2px 2px 6px rgba(200, 200, 230, 0.6), inset -2px -2px 6px rgba(255, 255, 255, 0.8);
|
76 |
+
transition: all 0.3s ease;
|
77 |
+
}
|
78 |
+
|
79 |
+
nav a:hover {
|
80 |
+
background: linear-gradient(145deg, #f8f7ff, #e0dfff);
|
81 |
+
color: #6c5ce7;
|
82 |
+
transform: translateY(-2px);
|
83 |
+
box-shadow: 0 4px 10px rgba(108, 92, 231, 0.25);
|
84 |
+
}
|
85 |
+
|
86 |
+
nav a.active {
|
87 |
+
background: #6c5ce7;
|
88 |
+
color: #fff;
|
89 |
+
font-weight: bold;
|
90 |
+
box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
|
91 |
+
}
|
92 |
+
|
93 |
+
/* Hero Section */
|
94 |
+
.hero {
|
95 |
+
background: url('consultation-hero.jpg') no-repeat center center/cover;
|
96 |
+
color: #fff;
|
97 |
+
text-align: center;
|
98 |
+
padding: 6rem 2rem;
|
99 |
+
position: relative;
|
100 |
+
}
|
101 |
+
|
102 |
+
.hero::after {
|
103 |
+
content: "";
|
104 |
+
position: absolute;
|
105 |
+
top: 0; left: 0; right: 0; bottom: 0;
|
106 |
+
background: rgba(0,0,0,0.5);
|
107 |
+
}
|
108 |
+
|
109 |
+
.hero-content {
|
110 |
+
position: relative;
|
111 |
+
z-index: 1;
|
112 |
+
max-width: 800px;
|
113 |
+
margin: 0 auto;
|
114 |
+
}
|
115 |
+
|
116 |
+
.hero h1 {
|
117 |
+
font-size: 3rem;
|
118 |
+
margin-bottom: 1rem;
|
119 |
+
font-family: 'Playfair Display', serif;
|
120 |
+
}
|
121 |
+
|
122 |
+
.hero p {
|
123 |
+
font-size: 1.2rem;
|
124 |
+
}
|
125 |
+
|
126 |
+
/* Consultation Section */
|
127 |
+
.consultation {
|
128 |
+
padding: 4rem 2rem;
|
129 |
+
max-width: 1200px;
|
130 |
+
margin: auto;
|
131 |
+
text-align: center;
|
132 |
+
}
|
133 |
+
|
134 |
+
.consultation h2 {
|
135 |
+
font-size: 2.5rem;
|
136 |
+
margin-bottom: 2rem;
|
137 |
+
color: #6c5ce7;
|
138 |
+
font-family: 'Playfair Display', serif;
|
139 |
+
}
|
140 |
+
|
141 |
+
.consultation p {
|
142 |
+
font-size: 1.1rem;
|
143 |
+
margin-bottom: 2rem;
|
144 |
+
color: #444;
|
145 |
+
}
|
146 |
+
|
147 |
+
.consultation-grid {
|
148 |
+
display: grid;
|
149 |
+
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
150 |
+
gap: 2rem;
|
151 |
+
margin-top: 2rem;
|
152 |
+
}
|
153 |
+
|
154 |
+
.consultation-card {
|
155 |
+
background: #fff;
|
156 |
+
padding: 2rem;
|
157 |
+
border-radius: 12px;
|
158 |
+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
|
159 |
+
transition: transform 0.3s ease;
|
160 |
+
}
|
161 |
+
|
162 |
+
.consultation-card:hover {
|
163 |
+
transform: scale(1.05);
|
164 |
+
box-shadow: 0 6px 16px rgba(0,0,0,0.2);
|
165 |
+
}
|
166 |
+
|
167 |
+
.consultation-card img {
|
168 |
+
height: 80px;
|
169 |
+
margin-bottom: 1rem;
|
170 |
+
}
|
171 |
+
|
172 |
+
.consultation-card h3 {
|
173 |
+
margin-bottom: 1rem;
|
174 |
+
color: #6c5ce7;
|
175 |
+
font-family: 'Playfair Display', serif;
|
176 |
+
}
|
177 |
+
|
178 |
+
.consultation-card p {
|
179 |
+
font-size: 0.95rem;
|
180 |
+
color: #555;
|
181 |
+
}
|
182 |
+
|
183 |
+
/* Call To Action */
|
184 |
+
.cta {
|
185 |
+
background: linear-gradient(135deg, #6c5ce7, #9a89f7);
|
186 |
+
color: #fff;
|
187 |
+
text-align: center;
|
188 |
+
padding: 3rem 2rem;
|
189 |
+
margin-top: 3rem;
|
190 |
+
border-radius: 12px;
|
191 |
+
}
|
192 |
+
|
193 |
+
.cta h2 {
|
194 |
+
font-size: 2rem;
|
195 |
+
margin-bottom: 1rem;
|
196 |
+
font-family: 'Playfair Display', serif;
|
197 |
+
}
|
198 |
+
|
199 |
+
.cta a {
|
200 |
+
background: #fff;
|
201 |
+
color: #6c5ce7;
|
202 |
+
padding: 0.8rem 1.5rem;
|
203 |
+
border-radius: 8px;
|
204 |
+
font-weight: bold;
|
205 |
+
transition: 0.3s ease;
|
206 |
+
}
|
207 |
+
|
208 |
+
.cta a:hover {
|
209 |
+
background: #ecebff;
|
210 |
+
}
|
211 |
+
|
212 |
+
/* Footer */
|
213 |
+
footer {
|
214 |
+
background: #2C3E50;
|
215 |
+
color: white;
|
216 |
+
padding: 2rem;
|
217 |
+
text-align: center;
|
218 |
+
margin-top: 4rem;
|
219 |
+
}
|
220 |
+
|
221 |
+
footer img.logo {
|
222 |
+
height: 40px;
|
223 |
+
margin-bottom: 1rem;
|
224 |
+
}
|
225 |
+
|
226 |
+
footer p {
|
227 |
+
font-size: 0.9rem;
|
228 |
+
}
|
229 |
+
</style>
|
230 |
+
</head>
|
231 |
+
<body>
|
232 |
+
<!-- Navbar -->
|
233 |
+
<header>
|
234 |
+
<div class="logo-container">
|
235 |
+
<img src="logo black.png" alt="Astronova Logo" class="logo">
|
236 |
+
<h1>Astronova</h1>
|
237 |
+
</div>
|
238 |
+
<nav>
|
239 |
+
<a href="index3.html">Home</a>
|
240 |
+
<a href="about3.html">About</a>
|
241 |
+
<a href="services3.html">Our Services</a>
|
242 |
+
<a href="products3.html">Our Products</a>
|
243 |
+
<a href="booking3.html">Contact</a>
|
244 |
+
</nav>
|
245 |
+
</header>
|
246 |
+
|
247 |
+
<!-- Hero -->
|
248 |
+
<section class="hero">
|
249 |
+
<div class="hero-content">
|
250 |
+
<h1>One-on-One Personal Consultation</h1>
|
251 |
+
<p>Authentic, real, and trustworthy astrology services — designed just for you.</p>
|
252 |
+
</div>
|
253 |
+
</section>
|
254 |
+
|
255 |
+
<!-- Consultation Section -->
|
256 |
+
<section class="consultation">
|
257 |
+
<h2>Why Choose Our Consultation?</h2>
|
258 |
+
<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>
|
259 |
+
|
260 |
+
<div class="consultation-grid">
|
261 |
+
<div class="consultation-card">
|
262 |
+
<img src="icons/instagram.png" alt="Instagram">
|
263 |
+
<h3>Instagram Messaging</h3>
|
264 |
+
<p>Quick and easy consultation through Instagram DMs, ensuring instant connection and guidance.</p>
|
265 |
+
</div>
|
266 |
+
<div class="consultation-card">
|
267 |
+
<img src="icons/whatsapp.png" alt="WhatsApp">
|
268 |
+
<h3>WhatsApp Messaging</h3>
|
269 |
+
<p>Stay updated with daily messages and instant replies directly from our astrologers.</p>
|
270 |
+
</div>
|
271 |
+
<div class="consultation-card">
|
272 |
+
<img src="icons/phone-call.png" alt="Phone Call">
|
273 |
+
<h3>Phone Calls</h3>
|
274 |
+
<p>Speak directly with our astrology experts to gain clarity and personal guidance.</p>
|
275 |
+
</div>
|
276 |
+
<div class="consultation-card">
|
277 |
+
<img src="icons/report.png" alt="Reports">
|
278 |
+
<h3>Daily Reporting</h3>
|
279 |
+
<p>Receive regular progress updates about your rituals and requests so you never feel left behind.</p>
|
280 |
+
</div>
|
281 |
+
</div>
|
282 |
+
</section>
|
283 |
+
|
284 |
+
<!-- Call to Action -->
|
285 |
+
<section class="cta">
|
286 |
+
<h2>Book Your Personal Consultation Today</h2>
|
287 |
+
<p>Our trusted astrologers are ready to help you find clarity and solutions.</p>
|
288 |
+
<a href="booking3.html">Book Now</a>
|
289 |
+
</section>
|
290 |
+
|
291 |
+
<!-- Footer -->
|
292 |
+
<footer>
|
293 |
+
<img src="logo black.png" alt="Astronova Logo" class="logo">
|
294 |
+
<p>© 2025 Astronova. All rights reserved.</p>
|
295 |
+
<p>Contact: +91-XXXXXXXXXX | Instagram: @astronova.in</p>
|
296 |
+
</footer>
|
297 |
+
</body>
|
298 |
+
</html>
|
conversation.png
ADDED
![]() |
index3.html
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
7 |
+
<title>Astronova - Astrology Services</title>
|
8 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
|
9 |
+
<style>
|
10 |
+
* {
|
11 |
+
margin: 0;
|
12 |
+
padding: 0;
|
13 |
+
box-sizing: border-box;
|
14 |
+
font-family: 'Lato', sans-serif;
|
15 |
+
}
|
16 |
+
|
17 |
+
body {
|
18 |
+
background-color: #f4f4fa;
|
19 |
+
color: #2C3E50;
|
20 |
+
}
|
21 |
+
|
22 |
+
header {
|
23 |
+
background: linear-gradient(90deg, #ffffff, #ecebff);
|
24 |
+
color: #2C3E50;
|
25 |
+
padding: 12px 30px;
|
26 |
+
display: flex;
|
27 |
+
align-items: center;
|
28 |
+
justify-content: space-between;
|
29 |
+
flex-wrap: wrap;
|
30 |
+
box-shadow: 0 2px 10px rgba(44, 62, 80, 0.15);
|
31 |
+
position: sticky;
|
32 |
+
top: 0;
|
33 |
+
z-index: 1000;
|
34 |
+
border-bottom: 2px solid #e0dfff;
|
35 |
+
}
|
36 |
+
|
37 |
+
.logo-container {
|
38 |
+
display: flex;
|
39 |
+
align-items: center;
|
40 |
+
gap: 15px;
|
41 |
+
}
|
42 |
+
|
43 |
+
.logo {
|
44 |
+
height: 65px;
|
45 |
+
width: auto;
|
46 |
+
}
|
47 |
+
|
48 |
+
header h1 {
|
49 |
+
font-family: 'Playfair Display', serif;
|
50 |
+
font-size: 1.8rem;
|
51 |
+
color: #2C3E50;
|
52 |
+
}
|
53 |
+
|
54 |
+
/* --- Designer Navigation Bar --- */
|
55 |
+
nav {
|
56 |
+
display: flex;
|
57 |
+
gap: 18px;
|
58 |
+
flex-wrap: wrap;
|
59 |
+
align-items: center;
|
60 |
+
}
|
61 |
+
|
62 |
+
nav a {
|
63 |
+
position: relative;
|
64 |
+
text-decoration: none;
|
65 |
+
font-weight: bold;
|
66 |
+
padding: 8px 18px;
|
67 |
+
border-radius: 25px;
|
68 |
+
background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(240, 240, 255, 0.3));
|
69 |
+
color: #2C3E50;
|
70 |
+
box-shadow: inset 2px 2px 6px rgba(200, 200, 230, 0.6), inset -2px -2px 6px rgba(255, 255, 255, 0.8);
|
71 |
+
transition: all 0.3s ease;
|
72 |
+
}
|
73 |
+
|
74 |
+
nav a:hover {
|
75 |
+
background: linear-gradient(145deg, #f8f7ff, #e0dfff);
|
76 |
+
color: #6c5ce7;
|
77 |
+
transform: translateY(-2px);
|
78 |
+
box-shadow: 0 4px 10px rgba(108, 92, 231, 0.25);
|
79 |
+
}
|
80 |
+
|
81 |
+
nav a.active {
|
82 |
+
background: #6c5ce7;
|
83 |
+
color: #fff;
|
84 |
+
font-weight: bold;
|
85 |
+
box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
|
86 |
+
}
|
87 |
+
|
88 |
+
/* --- Rest of original CSS --- */
|
89 |
+
.hero {
|
90 |
+
background: linear-gradient(to right, #d6d6f5, #ffffff);
|
91 |
+
text-align: center;
|
92 |
+
padding: 60px 20px;
|
93 |
+
}
|
94 |
+
|
95 |
+
.hero h2 {
|
96 |
+
font-size: 2.5rem;
|
97 |
+
color: #2C3E50;
|
98 |
+
font-family: 'Playfair Display', serif;
|
99 |
+
}
|
100 |
+
|
101 |
+
.hero p {
|
102 |
+
margin: 20px 0;
|
103 |
+
font-size: 1.2rem;
|
104 |
+
}
|
105 |
+
|
106 |
+
.section {
|
107 |
+
padding: 40px 20px;
|
108 |
+
max-width: 1100px;
|
109 |
+
margin: auto;
|
110 |
+
}
|
111 |
+
|
112 |
+
.services {
|
113 |
+
display: grid;
|
114 |
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
115 |
+
gap: 30px;
|
116 |
+
margin-top: 20px;
|
117 |
+
}
|
118 |
+
|
119 |
+
.card {
|
120 |
+
background: white;
|
121 |
+
padding: 20px;
|
122 |
+
border-radius: 10px;
|
123 |
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
124 |
+
text-align: center;
|
125 |
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
126 |
+
}
|
127 |
+
|
128 |
+
.card:hover {
|
129 |
+
transform: scale(1.05);
|
130 |
+
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
|
131 |
+
}
|
132 |
+
|
133 |
+
.card img {
|
134 |
+
width: 60px;
|
135 |
+
height: 60px;
|
136 |
+
object-fit: contain;
|
137 |
+
margin-bottom: 15px;
|
138 |
+
}
|
139 |
+
|
140 |
+
.testimonial-card {
|
141 |
+
display: flex;
|
142 |
+
flex-direction: column;
|
143 |
+
align-items: center;
|
144 |
+
text-align: center;
|
145 |
+
}
|
146 |
+
|
147 |
+
.testimonial-card img {
|
148 |
+
width: 70px;
|
149 |
+
height: 70px;
|
150 |
+
border-radius: 50%;
|
151 |
+
margin-bottom: 10px;
|
152 |
+
object-fit: cover;
|
153 |
+
}
|
154 |
+
|
155 |
+
.testimonials {
|
156 |
+
background-color: #f9f9ff;
|
157 |
+
padding: 40px 20px;
|
158 |
+
}
|
159 |
+
|
160 |
+
.footer {
|
161 |
+
background-color: #2C3E50;
|
162 |
+
color: white;
|
163 |
+
padding: 20px;
|
164 |
+
text-align: center;
|
165 |
+
font-size: 0.9rem;
|
166 |
+
}
|
167 |
+
</style>
|
168 |
+
</head>
|
169 |
+
|
170 |
+
<body>
|
171 |
+
<header>
|
172 |
+
<div class="logo-container">
|
173 |
+
<img src="logo black.png" alt="Astronova Logo" class="logo">
|
174 |
+
<h1>Astronova</h1>
|
175 |
+
</div>
|
176 |
+
<nav>
|
177 |
+
<a href="index3.html" class="active">Home</a>
|
178 |
+
<a href="about3.html">About</a>
|
179 |
+
<a href="services3.html">Our Services</a>
|
180 |
+
<a href="products3.html">Our Products</a> <!-- ✅ New tab added -->
|
181 |
+
<a href="booking3.html">Contact</a>
|
182 |
+
</nav>
|
183 |
+
</header>
|
184 |
+
|
185 |
+
<section class="hero">
|
186 |
+
<h2>Welcome to Astronova</h2>
|
187 |
+
<p>Guiding You Through Life’s Uncertainty with Ancient Wisdom</p>
|
188 |
+
</section>
|
189 |
+
|
190 |
+
<section class="section">
|
191 |
+
<h2 style="text-align:center; font-family: 'Playfair Display', serif;">Our Services</h2>
|
192 |
+
<div class="services">
|
193 |
+
<a class="card" href="spells.html" style="display:block; text-decoration:none; color:inherit;">
|
194 |
+
<img src="spell-book.png" alt="Spell Icon">
|
195 |
+
<h3>Spells & Rituals</h3>
|
196 |
+
<p>Custom spell casting and rituals for love, career, and life balance.</p>
|
197 |
+
</a>
|
198 |
+
<a class="card" href="vashikaran.html" style="display:block; text-decoration:none; color:inherit;">
|
199 |
+
<img src="mind.png" alt="Vashikaran Icon">
|
200 |
+
<h3>Vashikaran</h3>
|
201 |
+
<p>Effective Vashikaran solutions to resolve love, marriage, and relationship challenges with trusted guidance.</p>
|
202 |
+
</a>
|
203 |
+
<a class="card" href="consultation.html" style="display:block; text-decoration:none; color:inherit;">
|
204 |
+
<img src="conversation.png" alt="Consultation Icon">
|
205 |
+
<h3>Personal Consultation</h3>
|
206 |
+
<p>Get one-on-one personalized astrological guidance tailored to your unique problems, goals, and life path.</p>
|
207 |
+
</a>
|
208 |
+
<a class="card" href="remedies.html" style="display:block; text-decoration:none; color:inherit;">
|
209 |
+
<img src="time-management.png" alt="Daily Remedies Icon">
|
210 |
+
<h3>Daily Remedies</h3>
|
211 |
+
<p>Simple yet powerful daily remedies and rituals to remove obstacles, attract positivity, and improve well-being.</p>
|
212 |
+
</a>
|
213 |
+
</div>
|
214 |
+
</section>
|
215 |
+
|
216 |
+
<section class="section testimonials">
|
217 |
+
<h2 style="text-align:center; font-family: 'Playfair Display', serif;">What Our Clients Say</h2>
|
218 |
+
<div class="services">
|
219 |
+
<div class="card testimonial-card">
|
220 |
+
<img src="profiles/anjali.jpg" alt="Anjali S">
|
221 |
+
<p>“Astronova changed my life. I gained clarity and peace after months of confusion.”</p>
|
222 |
+
<strong>- Anjali S.</strong>
|
223 |
+
</div>
|
224 |
+
<div class="card testimonial-card">
|
225 |
+
<img src="profiles/rohit.jpg" alt="Rohit M">
|
226 |
+
<p>“The guidance was spot on. I felt heard, understood, and helped.”</p>
|
227 |
+
<strong>- Rohit M.</strong>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
</section>
|
231 |
+
|
232 |
+
<footer class="footer">
|
233 |
+
<p>© 2025 Astronova. All rights reserved.</p>
|
234 |
+
<p>Contact: +91-XXXXXXXXXX | Instagram: @astronova.in</p>
|
235 |
+
</footer>
|
236 |
+
</body>
|
237 |
+
</html>
|
logo black.png
ADDED
![]() |
logo.png
ADDED
![]() |
logo2.png
ADDED
![]() |
logo3.png
ADDED
![]() |
mind.png
ADDED
![]() |
services3.html
ADDED
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
6 |
+
<title>Astronova - Our Services</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* {
|
10 |
+
margin: 0;
|
11 |
+
padding: 0;
|
12 |
+
box-sizing: border-box;
|
13 |
+
font-family: 'Lato', sans-serif;
|
14 |
+
}
|
15 |
+
|
16 |
+
body {
|
17 |
+
background-color: #f4f4fa;
|
18 |
+
color: #2C3E50;
|
19 |
+
}
|
20 |
+
|
21 |
+
header {
|
22 |
+
background-color: #2C3E50;
|
23 |
+
color: white;
|
24 |
+
padding: 10px 30px;
|
25 |
+
display: flex;
|
26 |
+
align-items: center;
|
27 |
+
justify-content: space-between;
|
28 |
+
}
|
29 |
+
|
30 |
+
.logo-container {
|
31 |
+
display: flex;
|
32 |
+
align-items: center;
|
33 |
+
gap: 15px;
|
34 |
+
}
|
35 |
+
|
36 |
+
.logo {
|
37 |
+
height: 80px; /* Zoom in logo size */
|
38 |
+
width: auto;
|
39 |
+
}
|
40 |
+
|
41 |
+
|
42 |
+
header h1 {
|
43 |
+
font-family: 'Playfair Display', serif;
|
44 |
+
}
|
45 |
+
|
46 |
+
nav {
|
47 |
+
display: flex;
|
48 |
+
justify-content: center;
|
49 |
+
gap: 30px;
|
50 |
+
margin-top: 10px;
|
51 |
+
}
|
52 |
+
|
53 |
+
nav a {
|
54 |
+
color: white;
|
55 |
+
text-decoration: none;
|
56 |
+
font-weight: bold;
|
57 |
+
}
|
58 |
+
|
59 |
+
.hero {
|
60 |
+
background: linear-gradient(to right, #d6d6f5, #ffffff);
|
61 |
+
text-align: center;
|
62 |
+
padding: 60px 20px;
|
63 |
+
}
|
64 |
+
|
65 |
+
.hero h2 {
|
66 |
+
font-size: 2.5rem;
|
67 |
+
color: #2C3E50;
|
68 |
+
font-family: 'Playfair Display', serif;
|
69 |
+
}
|
70 |
+
|
71 |
+
.hero p {
|
72 |
+
margin: 20px 0;
|
73 |
+
font-size: 1.2rem;
|
74 |
+
}
|
75 |
+
|
76 |
+
.hero button {
|
77 |
+
padding: 10px 25px;
|
78 |
+
font-size: 1rem;
|
79 |
+
background-color: #F1C40F;
|
80 |
+
border: none;
|
81 |
+
cursor: pointer;
|
82 |
+
border-radius: 5px;
|
83 |
+
}
|
84 |
+
|
85 |
+
.section {
|
86 |
+
padding: 40px 20px;
|
87 |
+
max-width: 1100px;
|
88 |
+
margin: auto;
|
89 |
+
}
|
90 |
+
|
91 |
+
.services {
|
92 |
+
display: grid;
|
93 |
+
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
94 |
+
gap: 30px;
|
95 |
+
margin-top: 20px;
|
96 |
+
}
|
97 |
+
|
98 |
+
.card {
|
99 |
+
background: white;
|
100 |
+
padding: 20px;
|
101 |
+
border-radius: 10px;
|
102 |
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
103 |
+
}
|
104 |
+
|
105 |
+
.testimonials {
|
106 |
+
background-color: #f9f9ff;
|
107 |
+
padding: 40px 20px;
|
108 |
+
}
|
109 |
+
|
110 |
+
.footer {
|
111 |
+
background-color: #2C3E50;
|
112 |
+
color: white;
|
113 |
+
padding: 20px;
|
114 |
+
text-align: center;
|
115 |
+
font-size: 0.9rem;
|
116 |
+
}
|
117 |
+
</style>
|
118 |
+
</head>
|
119 |
+
<body>
|
120 |
+
|
121 |
+
<header>
|
122 |
+
<div class="logo-container">
|
123 |
+
<img src="logo.png" alt="Astronova Logo" class="logo">
|
124 |
+
<h1>Astronova</h1>
|
125 |
+
</div>
|
126 |
+
<nav>
|
127 |
+
<li><a href="index3.html">Home</a></li>
|
128 |
+
<a href="about3.html">About</a>
|
129 |
+
<a href="services3.html">Our Services</a>
|
130 |
+
<a href="booking3.html">Contact</a>
|
131 |
+
</nav>
|
132 |
+
</header>
|
133 |
+
|
134 |
+
<section class="hero">
|
135 |
+
<h2>Our Services</h2>
|
136 |
+
<p>Explore our personalized offerings to guide your life's journey through astrology, numerology, tarot, and more.</p>
|
137 |
+
</section>
|
138 |
+
|
139 |
+
<section class="section">
|
140 |
+
<div class="services">
|
141 |
+
<div class="card">
|
142 |
+
<h3>Personalized Horoscope</h3>
|
143 |
+
<p>Get a detailed analysis of your birth chart and understand the stars' impact on your life path.</p>
|
144 |
+
</div>
|
145 |
+
<div class="card">
|
146 |
+
<h3>Relationship Guidance</h3>
|
147 |
+
<p>Resolve love life doubts with insightful advice based on your zodiac compatibility and planetary alignment.</p>
|
148 |
+
</div>
|
149 |
+
<div class="card">
|
150 |
+
<h3>Career & Finance</h3>
|
151 |
+
<p>Receive clarity on job decisions, business ventures, and financial stability through Vedic astrology.</p>
|
152 |
+
</div>
|
153 |
+
<div class="card">
|
154 |
+
<h3>Numerology Consultation</h3>
|
155 |
+
<p>Discover the secrets behind your numbers and unlock energy aligned with your life goals.</p>
|
156 |
+
</div>
|
157 |
+
<div class="card">
|
158 |
+
<h3>Tarot Reading</h3>
|
159 |
+
<p>Uncover hidden messages and gain perspective on present challenges through intuitive card readings.</p>
|
160 |
+
</div>
|
161 |
+
<div class="card">
|
162 |
+
<h3>Matchmaking & Kundli Milan</h3>
|
163 |
+
<p>Find your ideal life partner based on deep astrological compatibility and dosha analysis.</p>
|
164 |
+
</div>
|
165 |
+
</div>
|
166 |
+
</section>
|
167 |
+
|
168 |
+
<footer class="footer">
|
169 |
+
© 2025 Astronova. All rights reserved.
|
170 |
+
</footer>
|
171 |
+
|
172 |
+
</body>
|
173 |
+
</html>
|
spell-book.png
ADDED
![]() |
spells.html
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
+
<title>Spells & Rituals | Astronova</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', sans-serif; }
|
10 |
+
body { background-color: #f4f4fa; color: #2C3E50; }
|
11 |
+
|
12 |
+
header { background-color: #2C3E50; color: white; padding: 10px 30px; display: flex; align-items: center; justify-content: space-between; }
|
13 |
+
.logo-container { display: flex; align-items: center; gap: 15px; }
|
14 |
+
.logo { height: 60px; width: auto; }
|
15 |
+
header h1 { font-family: 'Playfair Display', serif; }
|
16 |
+
nav { display: flex; justify-content: center; gap: 30px; }
|
17 |
+
nav a { color: white; text-decoration: none; font-weight: bold; }
|
18 |
+
|
19 |
+
.hero { background: linear-gradient(to right, #d6d6f5, #ffffff); text-align: center; padding: 60px 20px; }
|
20 |
+
.hero h2 { font-size: 2.2rem; font-family: 'Playfair Display', serif; }
|
21 |
+
.hero p { margin-top: 10px; font-size: 1.05rem; }
|
22 |
+
|
23 |
+
.section { padding: 40px 20px; max-width: 1000px; margin: auto; }
|
24 |
+
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
|
25 |
+
.grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
|
26 |
+
.list li { margin-left: 18px; line-height: 1.7; }
|
27 |
+
h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
|
28 |
+
|
29 |
+
.back-row { margin-top: 24px; text-align: center; }
|
30 |
+
.btn { display: inline-block; padding: 10px 18px; background:#F1C40F; color:#2C3E50; border-radius: 6px; text-decoration: none; font-weight: 700; }
|
31 |
+
.btn:hover { background:#d4ac0d; }
|
32 |
+
|
33 |
+
footer { background-color:#2C3E50; color:#fff; text-align:center; padding:20px; font-size:0.9rem; margin-top: 40px; }
|
34 |
+
</style>
|
35 |
+
</head>
|
36 |
+
<body>
|
37 |
+
<header>
|
38 |
+
<div class="logo-container">
|
39 |
+
<img src="logo.png" alt="Astronova Logo" class="logo">
|
40 |
+
<h1>Astronova</h1>
|
41 |
+
</div>
|
42 |
+
<nav>
|
43 |
+
<a href="index3.html">Home</a>
|
44 |
+
<a href="about3.html">About</a>
|
45 |
+
<a href="services3.html">Our Services</a>
|
46 |
+
<a href="booking3.html">Contact</a>
|
47 |
+
</nav>
|
48 |
+
</header>
|
49 |
+
|
50 |
+
<section class="hero">
|
51 |
+
<h2>Spells & Rituals</h2>
|
52 |
+
<p>Precise, ethical rituals crafted to attract positivity, balance, and progress in your life.</p>
|
53 |
+
</section>
|
54 |
+
|
55 |
+
<section class="section grid">
|
56 |
+
<div class="card">
|
57 |
+
<h3>What We Offer</h3>
|
58 |
+
<p>Every case is unique, so we design rituals based on your goals and chart. We work with mantras, yantras, planetary hours, candles, and sacred procedures to align your path with favorable energies.</p>
|
59 |
+
<ul class="list">
|
60 |
+
<li>Love & Relationship Spells (reconciliation, commitment, harmony)</li>
|
61 |
+
<li>Career & Wealth Rituals (growth, opportunity, stability)</li>
|
62 |
+
<li>Health & Protection (ward off negativity, strengthen vitality)</li>
|
63 |
+
<li>Peace & Mindfulness (calm, focus, emotional clarity)</li>
|
64 |
+
</ul>
|
65 |
+
</div>
|
66 |
+
|
67 |
+
<div class="card">
|
68 |
+
<h3>How It Works</h3>
|
69 |
+
<ol class="list" style="margin-left:18px;">
|
70 |
+
<li>Short intake: your name, birth details, and objective.</li>
|
71 |
+
<li>Assessment: we identify the dominant planetary influences.</li>
|
72 |
+
<li>Custom plan: we prepare your ritual schedule and materials.</li>
|
73 |
+
<li>Execution & guidance: we perform rituals and share do’s & don’ts.</li>
|
74 |
+
</ol>
|
75 |
+
<p style="margin-top:10px;">Typical timelines range from 7–28 days depending on the complexity. You receive regular updates and post-ritual care tips.</p>
|
76 |
+
</div>
|
77 |
+
|
78 |
+
<div class="card">
|
79 |
+
<h3>Ethics & Safety</h3>
|
80 |
+
<p>We follow positive, non-harmful practices. No rituals are done to cause damage or violate free will. Our goal is alignment and resolution — never harm.</p>
|
81 |
+
</div>
|
82 |
+
|
83 |
+
<div class="card">
|
84 |
+
<h3>Get Started</h3>
|
85 |
+
<p>Ready to begin? Book your slot and we’ll suggest the best path for your situation.</p>
|
86 |
+
<div class="back-row">
|
87 |
+
<a class="btn" href="booking3.html">Book Consultation</a>
|
88 |
+
<a class="btn" href="index3.html" style="margin-left:10px;">Back to Home</a>
|
89 |
+
</div>
|
90 |
+
</div>
|
91 |
+
</section>
|
92 |
+
|
93 |
+
<footer>
|
94 |
+
© 2025 Astronova. All rights reserved.
|
95 |
+
</footer>
|
96 |
+
</body>
|
97 |
+
</html>
|
time-management.png
ADDED
![]() |
vashikaran.html
ADDED
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
6 |
+
<title>Vashikaran Services | Astronova</title>
|
7 |
+
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Lato&display=swap" rel="stylesheet">
|
8 |
+
<style>
|
9 |
+
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Lato', sans-serif; }
|
10 |
+
body { background-color: #f4f4fa; color: #2C3E50; }
|
11 |
+
|
12 |
+
header { background-color: #2C3E50; color: white; padding: 10px 30px; display: flex; align-items: center; justify-content: space-between; }
|
13 |
+
.logo-container { display: flex; align-items: center; gap: 15px; }
|
14 |
+
.logo { height: 60px; width: auto; }
|
15 |
+
header h1 { font-family: 'Playfair Display', serif; }
|
16 |
+
nav { display: flex; justify-content: center; gap: 30px; }
|
17 |
+
nav a { color: white; text-decoration: none; font-weight: bold; }
|
18 |
+
|
19 |
+
.hero { background: linear-gradient(to right, #d6d6f5, #ffffff); text-align: center; padding: 60px 20px; }
|
20 |
+
.hero h2 { font-size: 2.2rem; font-family: 'Playfair Display', serif; }
|
21 |
+
.hero p { margin-top: 10px; font-size: 1.05rem; }
|
22 |
+
|
23 |
+
.section { padding: 40px 20px; max-width: 1000px; margin: auto; }
|
24 |
+
.card { background: white; padding: 20px; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
|
25 |
+
.grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
|
26 |
+
.list li { margin-left: 18px; line-height: 1.7; }
|
27 |
+
h3 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
|
28 |
+
|
29 |
+
.back-row { margin-top: 24px; text-align: center; }
|
30 |
+
.btn { display: inline-block; padding: 10px 18px; background:#F1C40F; color:#2C3E50; border-radius: 6px; text-decoration: none; font-weight: 700; }
|
31 |
+
.btn:hover { background:#d4ac0d; }
|
32 |
+
|
33 |
+
footer { background-color:#2C3E50; color:#fff; text-align:center; padding:20px; font-size:0.9rem; margin-top: 40px; }
|
34 |
+
</style>
|
35 |
+
</head>
|
36 |
+
<body>
|
37 |
+
<header>
|
38 |
+
<div class="logo-container">
|
39 |
+
<img src="logo.png" alt="Astronova Logo" class="logo">
|
40 |
+
<h1>Astronova</h1>
|
41 |
+
</div>
|
42 |
+
<nav>
|
43 |
+
<a href="index3.html">Home</a>
|
44 |
+
<a href="about3.html">About</a>
|
45 |
+
<a href="services3.html">Our Services</a>
|
46 |
+
<a href="booking3.html">Contact</a>
|
47 |
+
</nav>
|
48 |
+
</header>
|
49 |
+
|
50 |
+
<section class="hero">
|
51 |
+
<h2>Vashikaran Services</h2>
|
52 |
+
<p>Harness the ancient science of attraction and influence to restore harmony in your personal and professional life.</p>
|
53 |
+
</section>
|
54 |
+
|
55 |
+
<section class="section grid">
|
56 |
+
<div class="card">
|
57 |
+
<h3>What is Vashikaran?</h3>
|
58 |
+
<p>Vashikaran is a sacred art from Vedic traditions, used to influence thoughts, emotions, and situations in a positive and ethical manner.
|
59 |
+
It helps remove conflicts, attract love, and restore balance in relationships and life situations.</p>
|
60 |
+
<ul class="list">
|
61 |
+
<li>Resolve misunderstandings in love & marriage</li>
|
62 |
+
<li>Strengthen attraction and bonding</li>
|
63 |
+
<li>Gain respect and harmony in family</li>
|
64 |
+
<li>Overcome obstacles in career & business</li>
|
65 |
+
</ul>
|
66 |
+
</div>
|
67 |
+
|
68 |
+
<div class="card">
|
69 |
+
<h3>Our Approach</h3>
|
70 |
+
<ol class="list" style="margin-left:18px;">
|
71 |
+
<li>Initial Consultation – Understanding your challenge and desired outcome.</li>
|
72 |
+
<li>Personalized Chart Analysis – Identifying planetary influences affecting your relationships.</li>
|
73 |
+
<li>Custom Vashikaran Procedure – Using mantras, yantras, and rituals suited for your case.</li>
|
74 |
+
<li>Guided Support – After the ritual, we provide remedies and practical advice for long-term harmony.</li>
|
75 |
+
</ol>
|
76 |
+
</div>
|
77 |
+
|
78 |
+
<div class="card">
|
79 |
+
<h3>Types of Vashikaran We Provide</h3>
|
80 |
+
<ul class="list">
|
81 |
+
<li><strong>Love Vashikaran:</strong> Reconnect with your partner or attract new love.</li>
|
82 |
+
<li><strong>Marriage Vashikaran:</strong> Resolve obstacles in marriage or gain parental approval.</li>
|
83 |
+
<li><strong>Professional Vashikaran:</strong> Influence situations for career growth and business stability.</li>
|
84 |
+
<li><strong>Family & Harmony:</strong> Reduce conflicts, misunderstandings, and negative energies.</li>
|
85 |
+
</ul>
|
86 |
+
</div>
|
87 |
+
|
88 |
+
<div class="card">
|
89 |
+
<h3>Why Choose Astronova?</h3>
|
90 |
+
<p>Our Vashikaran services are rooted in authenticity, ethics, and care. We believe in helping people without harming free will or causing negative karmic effects.
|
91 |
+
Every process is kept confidential, ensuring your privacy and trust are respected.</p>
|
92 |
+
</div>
|
93 |
+
|
94 |
+
<div class="card">
|
95 |
+
<h3>Get Started</h3>
|
96 |
+
<p>Let us guide you with effective Vashikaran solutions tailored to your life challenges. Book your consultation today.</p>
|
97 |
+
<div class="back-row">
|
98 |
+
<a class="btn" href="booking3.html">Book Consultation</a>
|
99 |
+
<a class="btn" href="index3.html" style="margin-left:10px;">Back to Home</a>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
</section>
|
103 |
+
|
104 |
+
<footer>
|
105 |
+
© 2025 Astronova. All rights reserved.
|
106 |
+
</footer>
|
107 |
+
</body>
|
108 |
+
</html>
|