Spaces:
Running
Running
<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> | |