.elementor-15723 .elementor-element.elementor-element-1999e7a{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d90a35d *//* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Hero Section */
#hero {
    background: linear-gradient(to bottom, #f5f5f5, #ffffff);
    text-align: center;
    padding: 120px 20px;
    position: relative;
    animation: fadeIn 1.5s ease-in-out;
}

#hero h1 {
    font-size: 48px;
    color: #333;
    font-family: 'Georgia', serif;
    margin: 0;
    animation: slideInTop 2s ease-out;
}

#hero p {
    font-size: 24px;
    color: #666;
    margin-top: 20px;
    animation: slideInBottom 2s ease-out;
}

/* Section for Bhagavad Gita About */
section {
    padding: 60px 20px;
    text-align: center;
    animation: fadeInUp 1.5s ease-in-out;
}

section h2 {
    font-size: 34px;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
}

section p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Bhagavad Gita Teachings Section */
#teachings {
    background-color: #f0f9ff;
}

#teachings h2 {
    color: #004d7a;
}

/* Shlokas Section */
#shlokas {
    background-color: #ffffff;
    padding: 80px 20px;
    animation: fadeInUp 2s ease-in-out;
}

#shlokas h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.shloka {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    animation: fadeInLeft 1.5s ease-out;
}

.shloka h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.shloka p {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin: 10px 0;
}

.shloka p:last-of-type {
    font-style: italic;
    color: #333;
}

/* Footer */
#footer {
    background-color: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
}

#footer p {
    font-size: 20px;
    color: #333;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 36px;
    }

    #hero p {
        font-size: 20px;
    }

    section h2 {
        font-size: 28px;
    }

    section p {
        font-size: 18px;
    }

    .shloka h3 {
        font-size: 24px;
    }

    .shloka p {
        font-size: 18px;
    }

    #footer p {
        font-size: 18px;
    }
}/* End custom CSS */