Spaces:
Running
Running
File size: 4,833 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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Astronova</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&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;
}
header {
background-color: #2C3E50;
color: white;
padding: 10px 30px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo-container {
display: flex;
align-items: center;
gap: 15px;
}
.logo {
height: 80px; /* Zoom in logo size */
width: auto;
}
header h1 {
font-family: 'Playfair Display', serif;
}
nav {
display: flex;
justify-content: center;
gap: 30px;
margin-top: 10px;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
}
.hero {
background: linear-gradient(to right, #d6d6f5, #ffffff);
text-align: center;
padding: 60px 20px;
}
.hero h2 {
font-size: 2.5rem;
color: #2C3E50;
font-family: 'Playfair Display', serif;
}
.hero p {
margin: 20px 0;
font-size: 1.2rem;
}
.section {
padding: 40px 20px;
max-width: 1100px;
margin: auto;
}
.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}
.footer {
background-color: #2C3E50;
color: white;
padding: 20px;
text-align: center;
font-size: 0.9rem;
margin-top: 40px;
}
.cta-button {
display: inline-block;
margin-top: 20px;
padding: 12px 25px;
background-color: #F1C40F;
color: #2C3E50;
font-weight: bold;
border-radius: 5px;
text-decoration: none;
}
.cta-button:hover {
background-color: #d4a90f;
}
</style>
</head>
<body>
<header>
<div class="logo-container">
<img src="logo.png" alt="Astronova Logo" class="logo">
<h1>Astronova</h1>
</div>
<nav>
<li><a href="index3.html">Home</a></li>
<a href="about3.html">About</a>
<a href="services3.html">Our Services</a>
<a href="booking3.html">Contact</a>
</nav>
</header>
<section class="hero">
<h2>About Astronova</h2>
<p>Your trusted partner for solving life’s challenges through astrology and spiritual guidance.</p>
</section>
<section class="section">
<div class="card">
<h3>Our Story</h3>
<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>
</div>
<div class="card">
<h3>What We Do</h3>
<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>
</div>
<div class="card">
<h3>Why Choose Us</h3>
<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>
</div>
<div class="card">
<h3>Our Mission</h3>
<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>
</div>
<div class="card" style="text-align: center;">
<h3>Start Your Journey with Us</h3>
<p>Whether you are seeking guidance, solutions, or spiritual tools, Astronova is here to walk with you towards a brighter future.</p>
<a href="booking.html" class="cta-button">Book Your Consultation</a>
</div>
</section>
<footer class="footer">
© 2025 Astronova. All rights reserved.
</footer>
</body>
</html>
|