        /* Dark theme for spiritual feel */
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #1a1a1a; /* Dark background color */
            color: #f2f2f2; /* Light text color for readability */
        }

        /* Full-screen background image */
        .background-image {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-size: cover;
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1; /* Slight transparency for the image a subtle effect */
        }

        /* Responsive top image */
        .top-image {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Fixed navigation buttons */
        .nav-buttons {
            display: flex;
            justify-content: space-between;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            padding: 5px 20px; /* Increased top margin */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }
        .nav-buttons button {
            background-color: #333;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            color: #f2f2f2;
            border-radius: 5px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }
        .nav-buttons button:hover {
            background-color: #e01d1d;
        }

        /* Incense sticks at bottom right */
        .incense-sticks {
            position: fixed;
            bottom: 20px;
            right: 140px; /* Move left to avoid overlapping with the lamp */
            width: 80px; /* Adjust size */
            height: auto;
            z-index: 10; /* Make sure it appears above other elements */
        }

        /* Smoke effect */
        @keyframes smoke {
            0% { transform: translateY(0); opacity: 1; }
            100% { transform: translateY(-300px); opacity: 0; }
        }
        .smoke {
            position: fixed;
            bottom: 100px; /* Above the incense sticks */
            right: 160px; /* Adjust to match the incense stick */
            width: 40px; /* Adjust size */
            height: 150px; /* Adjust height */
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: smoke 3s infinite ease-in-out;
            z-index: 9; /* Place behind the incense sticks */
        }

        /* Lamps at the bottom of the screen */
        .lamp {
            position: fixed;
            bottom: 20px;
            left: 30px; /* Adjust to place on the left */
            width: 100px; /* Adjust size */
            height: auto;
            animation: glow 2s infinite alternate;
            z-index: 10; /* Ensure the lamp is above other elements */
        }
        .lamp.right {
            left: auto;
            right: 30px; /* Adjust to place on the right */
            z-index: 10; /* Ensure the lamp is above other elements */
        }

        /* Glowing effect */
        @keyframes glow {
            0% { filter: brightness(1); }
            100% { filter: brightness(2.5); }
        }

        /* Text content styling */
        .content {
            padding: 10px 20px 20px 250px; /* Add padding to avoid overlap with fixed nav */
            text-align: left;
        }

        /* Dropdown and text section styling */
        .controls {
            margin: 20px;
            text-align: center;
        }
        .controls select {
            padding: 10px;
            font-size: 16px;
            margin-bottom: 20px;
            background-color: #333;
            color: #f2f2f2;
            border: 1px solid #444;
            border-radius: 5px;
        }
        .sanskrit, .transliteration, .translation, .meaning, {
            margin: 20px 0;
        }

/* Column layout */
.container {
    display: flex;
    margin-top: 0px; /* Space below the navigation */
    padding: 20px;
}

.left-column {
    width: 25%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.middle-column {
    width: 50%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    margin: 10px;
    text-align: left; /* Left-align text */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.right-column {
    width: 25%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0);
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Responsive layout */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left-column, .middle-column, .right-column {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .middle-column {
        order: 1;
    }
    .left-column {
        order: 2;
    }
    .right-column {
        order: 3;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #f2f2f2;
    position: relative;
    bottom: 0;
    width: 100%;
}
/* Justify text for specific content */
.justify-text {
    text-align: justify;
    margin: 20px 0; /* Optional: Add some margin for better spacing */
}

/* Example of applying justification to specific sections */
.sanskrit, .transliteration, .translation, .meaning {
    text-align: justify;
    margin: 20px 0;
}
/* Make the Sanskrit text larger */
.sanskrit {
    font-size: 1.2em; /* Adjust the size as needed */
    font-weight: bold; /* Optional: Make the text bold for better visibility */
	line-height: 1.8; /* Adjust this value to increase/decrease line spacing */
    margin: 20px 0; /* Maintain margin for spacing */
    text-align: justify; /* Justify the text */
}
