.elementor-378 .elementor-element.elementor-element-3b622b9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-378 .elementor-element.elementor-element-b21ebdd{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-378 .elementor-element.elementor-element-8738361{width:var( --container-widget-width, 74.798% );max-width:74.798%;--container-widget-width:74.798%;--container-widget-flex-grow:0;}.elementor-378 .elementor-element.elementor-element-8738361.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-378 .elementor-element.elementor-element-7dbb43a.elementor-element{--align-self:center;}@media(max-width:767px){.elementor-378 .elementor-element.elementor-element-8738361{width:var( --container-widget-width, 311.867px );max-width:311.867px;--container-widget-width:311.867px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-8738361 *//* =========================================
   Basic Reset & Typography
   ========================================= */
body {
    background-color: #f4ece1; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    margin: 0;
    padding: 30px 15px;
    box-sizing: border-box;
}

/* =========================================
   Controls & Button Styles
   ========================================= */
.controls {
    text-align: center;
    margin-bottom: 25px;
}

.action-btn {
    background-color: #e65c00;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(230, 92, 0, 0.3);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background-color: #cc5200;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 92, 0, 0.4);
}

/* =========================================
   Book Layout Container
   ========================================= */
.book-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Center spine shadow for desktop view */
.book-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

/* Individual Book Page */
.book-page {
    flex: 1;
    padding: 40px 50px;
    position: relative;
}

/* =========================================
   Text & Content Styles
   ========================================= */
.section-title {
    color: #cc5200;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 25px;
    border-bottom: 2px solid #ffcca3;
    padding-bottom: 10px;
}

.text-content {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: justify;
    min-height: 500px; /* Prevents layout shifting during typing */
}

/* Custom Bullet Points (Om Symbol) */
.text-content ul {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
}

.text-content ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.text-content ul li::before {
    content: "🕉️"; 
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1em;
    color: #ff8c00;
}

/* Blinking Cursor Animation */
.cursor {
    display: inline-block;
    width: 2px;
    background-color: #cc5200;
    margin-left: 5px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* =========================================
   Responsive Design (Tablets & Mobile)
   ========================================= */
@media (max-width: 900px) {
    .book-container {
        flex-direction: column; /* Stack pages vertically */
    }
    
    .book-container::before {
        display: none; /* Hide spine on mobile */
    }

    .book-page {
        padding: 30px 25px;
    }

    .left-page {
        border-bottom: 2px dashed #ffcca3; /* Separator for stacked view */
    }

    .text-content {
        min-height: auto;
    }

    .section-title {
        font-size: 1.5em;
        text-align: center;
    }
}/* End custom CSS */