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