/* Base Styles */
:root {
    --primary-color: #332261;
    --secondary-color: #5a3b94;
    --accent-color: hsl(45, 37%, 52%);
    --light-accent: #d9c384;
    --dark-color: #1a142e;
    --light-color: #f5f1fe;
    --text-color: #333;
    --light-text: #f8f8f8;
    --gray-text: #777;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --transition: all 0.3s ease;
}

/* Header layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color:#5a3b94;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Logo and text */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 80px;
    height: auto;
}

.logo-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin: 0;
    color: #ffffff;
}

.logo-text .tagline {
    font-size: 12px;
    margin: 0;
    color: #d9c384;
}

/* Nav menu */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    text-decoration: none;
    color: #999;
    font-weight: 500;
    transition: color 0.3s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: #6d4c41;
    border-bottom: 2px solid #c6a664;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.0rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background: var(--accent-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
}

.primary-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

.secondary-btn {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.text-btn {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0;
    position: relative;
}

.text-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.text-btn:hover {
    color: var(--accent-color);
}

.text-btn:hover::after {
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header.light h2,
.section-header.light p {
    color: var(--light-text);
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 1.5rem;
    position: relative;
}

.divider span {
    display: block;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.divider span::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--light-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.light .divider {
    background: var(--light-accent);
}

.light .divider span {
    background: var(--light-accent);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(26, 20, 46, 0.85);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--light-color);
}

.logo .tagline {
    font-size: 0.8rem;
    color: var(--light-accent);
    margin: 0;
}

.desktop-nav ul {
    display: flex;
}

.desktop-nav li {
    margin-left: 2rem;
}

.desktop-nav a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--accent-color);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background: var(--dark-color);
    padding: 2rem;
    z-index: 999;
    transition: var(--transition);
}

.mobile-nav.show {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    margin-bottom: 1.5rem;
}

.mobile-nav a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.pexels.com/photos/2114703/pexels-photo-2114703.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 20, 46, 0.8), rgba(90, 59, 148, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(51, 34, 97, 0.8);
    color: var(--light-color);
    padding: 10px;
    text-align: center;
    font-weight: 500;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

/* Services Section */
#services {
    padding: 40px 20px;
    text-align: center;
}

#services h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.service {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 20px auto;
    padding: 20px;
    width: 300px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    transition: transform 0.3s;
}

.service:hover {
    transform: scale(1.05);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 20px;
    font-family: 'Lora', serif;
    color: #2c3e50;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .menu-list {
        display: none;
        flex-direction: column;
        gap: 10px;
    }

    .service {
        width: 90%;
    }
}

@media (max-width: 480px) {
    header img {
        height: 60px;
    }

    .spiritual-quote {
        font-size: 14px;
    }

    #services h2 {
        font-size: 24px;
    }

    .service h3 {
        font-size: 18px;
    }
}

.homa-section {
    background-color: #f9f3e6;
    padding: 60px 20px;
    text-align: center;
}

.homa-container {
    max-width: 1200px;
    margin: auto;
}

.homa-title {
    font-size: 2.5em;
    color: #b36a15;
    margin-bottom: 10px;
}

.homa-description {
    font-size: 1.2em;
    color: #444;
    margin-bottom: 40px;
}

.homa-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.homa-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 250px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.homa-card:hover {
    transform: scale(1.05);
}

.homa-card img {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

.homa-card h3 {
    font-size: 1.5em;
    color: #8b3d06;
    margin: 10px 0;
}

.homa-card p {
    font-size: 1em;
    color: #555;
}


/* Highlight Section */
.highlight-section {
    padding: 6rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
}

.manifestation-slider {
    position: relative;
    margin-top: 3rem;
}

.manifestation-slide {
    display: none;
}

.manifestation-slide.active {
    display: block;
}

.manifestation-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.manifestation-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.manifestation-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.manifestation-text {
    flex: 1;
}

.manifestation-text h3 {
    color: var(--light-accent);
    margin-bottom: 1rem;
}

.slider-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--accent-color);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* Special Section (Kundalini & Naadi) */
.special-section {
    padding: 6rem 0;
    background-color: white;
}

.special-section.alt {
    background-color: var(--light-color);
}

.special-section-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.special-section-content.reverse {
    flex-direction: row-reverse;
}

.special-section-text {
    flex: 1;
}

.special-section-text h2 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.special-section-text h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.special-section-text p {
    margin-bottom: 2rem;
}

.special-section-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
}

.special-section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-section-image:hover img {
    transform: scale(1.05);
}

/* Online Services Section */
.online-services {
    padding: 6rem 0;
    background-color: white;
}

.service-booking-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-card {
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
    transition: var(--transition);
}

.booking-card:hover {
    transform: translateY(-10px);
}

.booking-card-content {
    padding: 1.5rem;
    text-align: center;
}

.booking-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.duration {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.booking-card-image {
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 5px;
}

.booking-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.booking-card:hover .booking-card-image img {
    transform: scale(1.1);
}

.book-btn {
    width: 100%;
}

.view-more-btn {
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.testimonial-text {
    position: relative;
    padding-left: 2rem;
}

.testimonial-text i {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.testimonial-author {
    margin-top: 1.5rem;
}

.testimonial-author h4 {
    margin-bottom: 0;
    color: var(--secondary-color);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.testimonial-carousel-dots {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Events Section */
.events {
    padding: 6rem 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 1.5rem;
    min-width: 100px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
}

.event-details {
    padding: 1.5rem;
    flex: 1;
}

.event-details h3 {
    margin-bottom: 0.5rem;
}

.event-time, .event-location {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.event-description {
    margin-top: 1rem;
}

.event-action {
    display: flex;
    align-items: center;
    padding-right: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-text p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px var(--shadow-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(177, 154, 86, 0.2);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--light-accent);
    font-style: italic;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--accent-color);
    bottom: -5px;
    left: 0;
}

.footer-links ul,
.footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background: var(--accent-color);
    color: var(--dark-color);
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--light-accent);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--light-accent);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .special-section-content,
    .contact-content {
        flex-direction: column;
    }

    .special-section-content.reverse {
        flex-direction: column;
    }

    .about-image, 
    .special-section-image {
        margin-bottom: 2rem;
    }

    .manifestation-content {
        flex-direction: column;
    }

    .manifestation-image {
        margin-bottom: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-booking-cards {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }

    .event-action {
        padding: 0 1.5rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .section-header {
        margin-bottom: 2rem;
    }
}
.booking-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.booking-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

.booking-card h3 {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.booking-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.book-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.book-btn:hover {
    background: #444;
}
#divine {
    display: flex;
    justify-content: center;
    gap: 30px; /* More breathable spacing */
    padding: 60px 20px;
    flex-wrap: wrap; /* Responsive support */
    background-color: #f4efff; /* Light lavender background */
  }
  
  .divine-item {
    background-color: #ffffff;
    padding: 30px 20px;
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .divine-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .divine-icon {
    height: 80px;
    margin-bottom: 20px;
  }
  
  .divine-title {
    font-size: 24px;
    font-weight: bold;
    color: #3e2266; /* Deep spiritual purple */
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
  }
  
  .divine-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }



  
.planet1 { width: 140px; height: 120px; }
.planet2 { width: 140px; height: 120px; }
.planet3 { width: 140px; height: 120px; }
.planet4 { width: 140px; height: 120px; }
.planet5 { width: 140px; height: 120px; }
.planet6 { width: 140px; height: 120px; }
.planet7 { width: 140px; height: 120px; }
.planet8 { width: 140px; height: 120px; }
.planet9 { width: 140px; height: 120px; }

/* Overall background and font */
body {
    background-color: #f9f5ff;
    font-family: 'Georgia', serif;
    color: #2d1a47;
    margin: 0;
    padding: 0;
  }
  
  .about-description {
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  .subheading {
    font-size: 1.8rem;
    color: #3b2678;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  .about-description p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #3f2b6c;
  }
  
  /* Divine Section */
  #divine {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    background-color: #ece4ff;
    padding: 50px 20px;
  }
  
  .divine-item {
    text-align: center;
    max-width: 300px;
    background-color: #fff;
    border-radius: 16px;
    padding: 25px 20px;
    box-shadow: 0 4px 12px rgba(89, 59, 161, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .divine-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(89, 59, 161, 0.25);
  }
  
  .divine-icon {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .divine-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #3b2678;
    margin-bottom: 10px;
  }
  
  .divine-description {
    font-size: 1rem;
    color: #4d3a74;
    line-height: 1.6;
  }

  /* General Headings */
.subheading {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3b2678;
    margin-bottom: 20px;
    text-align: center;
}

/* Photos Section */
.guruji-photos {
    padding: 40px 20px;
    background-color: #f9f5ff;
    text-align: center;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.guruji-photo {
    width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.guruji-photo:hover {
    transform: scale(1.05);
}

/* YouTube Videos Section */
.youtube-links {
    background-color: #f1ecfc;
    padding: 50px 20px;
    text-align: center;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

iframe {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    max-width: 100%;
}

/* Divine Manifestation Homa Sections */
.about-homa {
    background-color: #ffffff;
    padding: 60px 20px;
    border-top: 1px solid #e0d4f3;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2rem;
    font-weight: bold;
    color: #452e84;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: #3f2b6c;
    margin-bottom: 30px;
    line-height: 1.8;
}

.homa-image img {
    display: block;
    margin: 0 auto;
    max-width: 70%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.homa-image img:hover {
    transform: scale(1.03);
}
