HTML
338 lines
24 KB
Ayurvedic Stress Relief & Mental Wellness — Adaptogens & Calming Herbs
Ayurvedic stress relief and mental wellness guide — adaptogens, abhyanga, stress-reducing routines, and calming herbs for natural anxiety and stress management.
Live Preview
Source Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ayurvedic stress relief and mental wellness guide — adaptogens, abhyanga, stress-reducing routines, and calming herbs for natural anxiety and stress management.">
<title>Ayurvedic Stress Relief & Mental Wellness — Adaptogens & Calming Herbs</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--primary-color: #2d5f4f;
--secondary-color: #8b7355;
--accent-color: #c9a96e;
--text-dark: #2c3e50;
--text-light: #6c757d;
--bg-light: #f8f9fa;
--bg-white: #ffffff;
--border-color: #e9ecef;
}
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; }
.navbar { position: sticky; top: 0; background: var(--bg-white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); z-index: 1000; padding: 1rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); text-decoration: none; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.3s ease; }
.nav-menu a:hover { color: var(--primary-color); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-dark); cursor: pointer; }
.hero { background: linear-gradient(135deg, rgba(45, 95, 79, 0.9), rgba(139, 115, 85, 0.85)), url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1600') center/cover; color: white; padding: 8rem 2rem 6rem; text-align: center; }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 3rem; margin-bottom: 1.5rem; font-weight: 700; }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; font-weight: 300; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 700px; margin: 0 auto; }
.about { background: var(--bg-white); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { border-radius: 8px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-text h3 { font-size: 2rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.services { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: var(--bg-white); padding: 2.5rem 2rem; border-radius: 8px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid var(--border-color); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-dark); }
.service-card p { color: var(--text-light); line-height: 1.7; }
.trust { background: var(--bg-white); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-top: 3rem; }
.trust-item { text-align: center; }
.trust-number { font-size: 3rem; font-weight: 700; color: var(--primary-color); font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.trust-label { font-size: 1.1rem; color: var(--text-light); font-weight: 500; }
.content-section { background: var(--bg-light); }
.content-grid { display: grid; gap: 3rem; }
.content-article { background: var(--bg-white); border-radius: 8px; overflow: hidden; display: grid; grid-template-columns: 300px 1fr; gap: 2rem; border: 1px solid var(--border-color); }
.article-image { height: 100%; min-height: 250px; }
.article-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-content { padding: 2rem 2rem 2rem 0; }
.article-content h3 { font-size: 1.75rem; color: var(--primary-color); margin-bottom: 1rem; }
.article-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.article-meta { display: flex; gap: 1.5rem; font-size: 0.9rem; color: var(--text-light); margin-top: 1.5rem; }
.article-meta i { margin-right: 0.5rem; color: var(--accent-color); }
.contact { background: var(--bg-white); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
.contact-info h3 { font-size: 1.75rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.contact-info p { color: var(--text-light); margin-bottom: 2rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: start; gap: 1rem; }
.contact-item i { font-size: 1.25rem; color: var(--primary-color); margin-top: 0.25rem; }
.contact-item-content h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.contact-item-content p { margin: 0; color: var(--text-light); }
.contact-form { background: var(--bg-light); padding: 2.5rem; border-radius: 8px; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-dark); font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--border-color); border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 1rem; transition: border-color 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); }
.form-group textarea { resize: vertical; min-height: 120px; }
.submit-btn { background: var(--primary-color); color: white; padding: 1rem 2.5rem; border: none; border-radius: 4px; font-size: 1rem; font-weight: 500; cursor: pointer; transition: background 0.3s ease; width: 100%; }
.submit-btn:hover { background: #234a3d; }
footer { background: var(--text-dark); color: white; padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }
.footer-section h3 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--accent-color); }
.footer-section p { color: rgba(255,255,255,0.7); line-height: 1.8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; }
@media (max-width: 768px) {
.mobile-toggle { display: block; }
.nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-white); flex-direction: column; padding: 1rem 2rem; box-shadow: 0 5px 10px rgba(0,0,0,0.1); display: none; }
.nav-menu.active { display: flex; }
.hero h1 { font-size: 2rem; }
.hero p { font-size: 1rem; }
.section-header h2 { font-size: 2rem; }
.about-content, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
.content-article { grid-template-columns: 1fr; }
.article-image { height: 250px; }
.article-content { padding: 2rem; }
section { padding: 3rem 0; }
}
</style>
</head>
<body>
<nav class="navbar">
<div class="nav-container">
<a href="#" class="logo">Stress Relief</a>
<button class="mobile-toggle" aria-label="Toggle menu"><i class="fas fa-bars"></i></button>
<ul class="nav-menu">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Solutions</a></li>
<li><a href="#knowledge">Knowledge</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<section id="home" class="hero">
<div class="hero-content">
<h1>Ayurvedic Stress Relief & Mental Wellness</h1>
<p>Discover adaptogens, abhyanga (oil massage), stress-reducing daily routines, and calming herbs from Ayurveda for natural anxiety and stress management.</p>
</div>
</section>
<section id="about" class="about">
<div class="container">
<div class="about-content">
<div class="about-image">
<img src="https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=800" alt="Ayurvedic stress relief and relaxation">
</div>
<div class="about-text">
<h3>Ayurveda for Stress Management</h3>
<p>Stress is the epidemic of modern life. In Ayurveda, stress is understood as an imbalance of the mind-body connection, primarily affecting Vata and Pitta doshas. Vata stress manifests as anxiety, worry, and restlessness. Pitta stress shows as irritability, anger, and burnout.</p>
<p>Ayurveda offers a comprehensive toolkit for stress management that goes beyond symptom relief. Adaptogenic herbs like ashwagandha help the body adapt to stress. Daily routines (dinacharya) create stability. Oil massage (abhyanga) grounds the nervous system. Meditation and pranayama calm the mind.</p>
<p>Unlike quick-fix solutions, Ayurvedic stress management builds resilience over time — strengthening the nervous system, improving stress response, and creating a foundation of inner calm that sustains you through life's challenges.</p>
</div>
</div>
</div>
</section>
<section id="services" class="services">
<div class="container">
<div class="section-header">
<h2>Stress Relief Solutions</h2>
<p>Natural Ayurvedic approaches to managing stress and promoting mental wellness</p>
</div>
<div class="services-grid">
<div class="service-card">
<div class="service-icon"><i class="fas fa-seedling"></i></div>
<h3>Adaptogenic Herbs</h3>
<p>Ashwagandha reduces cortisol and calms the nervous system. Brahmi enhances mental clarity. Tulsi combats stress and boosts immunity. Jatamansi provides deep relaxation and improves sleep quality.</p>
</div>
<div class="service-card">
<div class="service-icon"><i class="fas fa-hands"></i></div>
<h3>Abhyanga (Oil Massage)</h3>
<p>Warm oil self-massage before bathing grounds Vata, calms the nervous system, and promotes deep relaxation. Use sesame oil (Vata), coconut oil (Pitta), or dry brushing (Kapha).</p>
</div>
<div class="service-card">
<div class="service-icon"><i class="fas fa-clock"></i></div>
<h3>Dinacharya (Daily Routine)</h3>
<p>A structured daily routine reduces decision fatigue and creates stability. Wake early, eat at consistent times, and sleep by 10 PM. Predictability calms the Vata mind.</p>
</div>
<div class="service-card">
<div class="service-icon"><i class="fas fa-wind"></i></div>
<h3>Calming Pranayama</h3>
<p>Nadi Shodhana (alternate nostril breathing) balances the nervous system. Bhramari (humming bee) calms anxiety. Sheetali cools anger. Just 10 minutes daily transforms stress response.</p>
</div>
<div class="service-card">
<div class="service-icon"><i class="fas fa-moon"></i></div>
<h3>Evening Wind-Down</h3>
<p>Create a calming evening routine: warm oil massage, herbal tea (chamomile, ashwagandha), gentle stretching, and digital detox. Avoid stimulating activities after 8 PM.</p>
</div>
<div class="service-card">
<div class="service-icon"><i class="fas fa-om"></i></div>
<h3>Meditation</h3>
<p>Just 20 minutes of daily meditation significantly reduces stress hormones. Trataka (candle gazing), mantra meditation, or simple breath awareness all calm the mind and restore balance.</p>
</div>
</div>
</div>
</section>
<section class="trust">
<div class="container">
<div class="section-header">
<h2>Our Experience</h2>
<p>Helping individuals manage stress naturally through Ayurvedic wisdom</p>
</div>
<div class="trust-grid">
<div class="trust-item"><div class="trust-number">17+</div><div class="trust-label">Years of Practice</div></div>
<div class="trust-item"><div class="trust-number">12,000+</div><div class="trust-label">Clients Helped</div></div>
<div class="trust-item"><div class="trust-number">20+</div><div class="trust-label">Stress Techniques</div></div>
<div class="trust-item"><div class="trust-number">100%</div><div class="trust-label">Natural Approach</div></div>
</div>
</div>
</section>
<section id="knowledge" class="content-section">
<div class="container">
<div class="section-header">
<h2>Stress Relief Knowledge</h2>
<p>Explore Ayurvedic wisdom for managing stress and cultivating mental wellness</p>
</div>
<div class="content-grid">
<article class="content-article">
<div class="article-image">
<img src="https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600" alt="Ashwagandha and adaptogens">
</div>
<div class="article-content">
<h3>Ashwagandha: The Supreme Adaptogen for Stress</h3>
<p>Ashwagandha (Withania somnifera) is Ayurveda's most celebrated stress-relief herb. As an adaptogen, it helps the body respond to stress by regulating cortisol levels, supporting adrenal function, and promoting a sense of calm without drowsiness.</p>
<p>Studies show ashwagandha reduces cortisol by up to 30%, improves sleep quality, reduces anxiety, and enhances resilience. Take 300-600mg of standardized extract daily, preferably in the evening. Combine with brahmi for enhanced mental calm, or with shatavari for women's stress support. Always consult a practitioner before starting.</p>
<div class="article-meta">
<span><i class="far fa-clock"></i>7 min read</span>
<span><i class="far fa-folder"></i>Herbs</span>
</div>
</div>
</article>
<article class="content-article">
<div class="article-image">
<img src="https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=600" alt="Abhyanga oil massage">
</div>
<div class="article-content">
<h3>Abhyanga: The Healing Power of Self-Oil Massage</h3>
<p>Abhyanga — warm oil self-massage — is one of Ayurveda's most powerful stress-relief practices. It grounds Vata, soothes the nervous system, promotes lymphatic circulation, and creates a profound sense of nurturance and well-being.</p>
<p>Use warm sesame oil for Vata, coconut oil for Pitta, or lighter oils with dry brushing for Kapha. Massage for 10-15 minutes before a warm shower, starting from the scalp and working down to the feet. Long strokes on long bones, circular motions on joints. Practice daily or at least 3 times weekly for cumulative stress-reduction benefits.</p>
<div class="article-meta">
<span><i class="far fa-clock"></i>6 min read</span>
<span><i class="far fa-folder"></i>Practices</span>
</div>
</div>
</article>
<article class="content-article">
<div class="article-image">
<img src="https://images.unsplash.com/photo-1518609878373-06d7a4321574?w=600" alt="Stress-reducing routine">
</div>
<div class="article-content">
<h3>Building a Stress-Resilient Daily Routine</h3>
<p>Morning: Wake before sunrise, scrape tongue, drink warm water, do abhyanga, practice yoga and pranayama, eat a warm breakfast. This sets a calm, grounded tone for the entire day.</p>
<p>Midday: Eat your largest meal at noon when digestion is strongest. Take a brief walk after lunch. Afternoon: Have herbal tea (tulsi or brahmi). Evening: Light dinner by 7 PM, warm oil massage, herbal tea, gentle stretching, no screens after 8 PM, sleep by 10 PM. This rhythm aligns with natural cortisol rhythms and builds stress resilience over time.</p>
<div class="article-meta">
<span><i class="far fa-clock"></i>8 min read</span>
<span><i class="far fa-folder"></i>Routines</span>
</div>
</div>
</article>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<div class="section-header">
<h2>Get Stress Relief Guidance</h2>
<p>Connect with our Ayurvedic specialists for personalized stress management support</p>
</div>
<div class="contact-wrapper">
<div class="contact-info">
<h3>Contact Information</h3>
<p>Our Ayurvedic wellness experts can help you build a personalized stress management plan with herbs, routines, and practices tailored to your dosha and lifestyle.</p>
<div class="contact-details">
<div class="contact-item"><i class="fas fa-map-marker-alt"></i><div class="contact-item-content"><h4>Location</h4><p>123 Wellness Street<br>Health District, City 12345</p></div></div>
<div class="contact-item"><i class="fas fa-phone"></i><div class="contact-item-content"><h4>Phone</h4><p>+1 (555) 123-4567</p></div></div>
<div class="contact-item"><i class="fas fa-envelope"></i><div class="contact-item-content"><h4>Email</h4><p>info@stressrelief.com</p></div></div>
<div class="contact-item"><i class="fas fa-clock"></i><div class="contact-item-content"><h4>Hours</h4><p>Monday - Friday: 9:00 AM - 6:00 PM<br>Saturday: 10:00 AM - 4:00 PM</p></div></div>
</div>
</div>
<div class="contact-form">
<form id="enquiryForm">
<div class="form-group"><label for="name">Full Name</label><input type="text" id="name" name="name" required></div>
<div class="form-group"><label for="email">Email Address</label><input type="email" id="email" name="email" required></div>
<div class="form-group"><label for="phone">Phone Number</label><input type="tel" id="phone" name="phone"></div>
<div class="form-group"><label for="message">Your Message</label><textarea id="message" name="message" required></textarea></div>
<button type="submit" class="submit-btn">Send Enquiry</button>
</form>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section"><h3>Stress Relief</h3><p>Empowering individuals to manage stress naturally through Ayurvedic herbs, routines, and mind-body practices for lasting mental wellness.</p></div>
<div class="footer-section"><h3>Quick Links</h3><ul class="footer-links"><li><a href="#about">About</a></li><li><a href="#services">Solutions</a></li><li><a href="#knowledge">Knowledge Base</a></li><li><a href="#contact">Contact</a></li></ul></div>
<div class="footer-section"><h3>Resources</h3><ul class="footer-links"><li><a href="#">Adaptogen Guide</a></li><li><a href="#">Abhyanga Guide</a></li><li><a href="#">Daily Routine</a></li><li><a href="#">FAQ</a></li></ul></div>
<div class="footer-section"><h3>Legal</h3><ul class="footer-links"><li><a href="#">Privacy Policy</a></li><li><a href="#">Terms of Service</a></li><li><a href="#">Disclaimer</a></li><li><a href="#">Professional Standards</a></li></ul></div>
</div>
<div class="footer-bottom"><p>© 2026 Stress Relief Center. All rights reserved. This website is for informational purposes only and does not constitute medical advice.</p></div>
</div>
</footer>
<script>
const mobileToggle = document.querySelector('.mobile-toggle');
const navMenu = document.querySelector('.nav-menu');
mobileToggle.addEventListener('click', () => { navMenu.classList.toggle('active'); });
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); navMenu.classList.remove('active'); }
});
});
const form = document.getElementById('enquiryForm');
form.addEventListener('submit', (e) => {
e.preventDefault();
const formData = new FormData(form);
const data = Object.fromEntries(formData);
console.log('Form submitted:', data);
alert('Thank you for your enquiry. We will get back to you within 24 hours.');
form.reset();
});
let lastScroll = 0;
const navbar = document.querySelector('.navbar');
window.addEventListener('scroll', () => {
const currentScroll = window.pageYOffset;
if (currentScroll > 100) { navbar.style.boxShadow = '0 2px 20px rgba(0,0,0,0.1)'; }
else { navbar.style.boxShadow = '0 2px 10px rgba(0,0,0,0.05)'; }
lastScroll = currentScroll;
});
</script>
</body>
</html>