/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    background-image: url('images/ayurvedicc.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero-text h1 {
    font-size: 3rem;
    color:white;
}


/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Section Styles */
section {
    padding: 60px 0;
}

/* Supporting Our Mission: Special Box Style */
.raghujiwan-intro-box {
    background-color: #edf7f2; /* Light green background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 40px 0;
}

.raghujiwan-intro-box h2 {
    font-size: 2.5rem;
    color: #2f7336; /* Medium Green */
    margin-bottom: 20px;
}

.raghujiwan-intro-box p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Ayurveda Section */
.ayurveda {
    padding: 60px 0;
}

.ayurveda-content {
    display: flex;
    justify-content: space-between; /* Aligns text and collage side by side */
}

.ayurveda-text {
    width: 60%; /* Adjust this value to change text area width */
}

.ayurveda-text h2 {
    font-size: 2rem;
    color: #2f7336; /* Medium Green */
}

.ayurveda-text p {
    margin: 1rem 0;
    color: #333;
}

.ayurveda ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.ayurveda ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #555;
}

.ayurved-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f78b3e; /* Saffron color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ayurved-cta-button:hover {
    background-color: #ff9947; /* Hover effect */
}

/* Collage Style */
.ayurveda-collage {
    width: 35%; /* Adjust this value to change collage area width */
}

.image-row {
    display: flex;
    justify-content: space-between; /* Space out images */
    margin-bottom: 10px; /* Space between image rows */
}

.ayurveda-collage img {
    width: 48%; /* Makes images responsive and ensures spacing */
    border-radius: 10px;
}

/* Astrology Section */
.astrology {
    background-color: #e1f1fb; /* Soft blue background */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
}

.astrology-content {
    display: flex;
    align-items: center;
}

.astrology-text {
    width: 50%;
}

.astrology-text h2 {
    font-size: 2rem;
    color: #2f7336; /* Medium Green */
}

.astrology-text p {
    margin: 1rem 0;
    color: #333;
}

.astro-cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f78b3e; /* Saffron */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.astro-cta-button:hover {
    background-color: #ff9947; /* Hover effect */
}

.astrology-image {
    width: 45%;
}

.astrology-image img {
    width: 100%;
    border-radius: 10px;
}

/* Call to Action Section */
.explore-raghujiwan {
    text-align: center;
    background-color: white;
    padding: 40px 0;
}

.explore-raghujiwan h3 {
    font-size: 2rem;
    color: #2f7336; /* Medium Green */
}

.explore-raghujiwan p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2f7336; /* Medium Green */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3f8b45;
}

@media(max-width:650px){
	.ayurveda-content, .astrology-content {
		display: block;
		justify-content: space-between; /* Aligns text and collage side by side */
	}
	.ayurveda-text, .astrology-text {
		width: 100%; /* Adjust this value to change text area width */
		margin-bottom: 20px;
	}
	.ayurveda-collage, .astrology-image {
		width: 100%;
		margin-bottom: 20px;
	}
	.ayurveda {
		padding: 0px 0;
	}
	.astrology {
		padding: 0px 0;
	}
}