.elementor-4400 .elementor-element.elementor-element-fcad59f.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(max-width:768px){.elementor-4400 .elementor-element.elementor-element-fcad59f{width:100%;max-width:100%;}.elementor-4400 .elementor-element.elementor-element-fcad59f.elementor-element{--flex-grow:0;--flex-shrink:0;}}/* Start custom CSS */<style>
/* ===================== ABOUT US SECTION 1 - PERFECT MOBILE ===================== */
.about-wrap {
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Story Section */
.about-story {
    padding: 80px 15px 70px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f5eb 100%);
}

.about-story-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-story-text .tag {
    display: inline-block;
    background: #f5f3ea;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #8c7b4f;
    margin-bottom: 20px;
}

.about-story-text h1 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1c1c1c;
}

.about-story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-story-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite;
}

/* ===================== STRONG MOBILE FIXES ===================== */
@media (max-width: 768px) {
    .about-story {
        padding: 60px 15px 50px;
    }
    .about-story-text h1 {
        font-size: 36px;
    }
    .about-story-text p {
        font-size: 16.5px;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding: 50px 12px 40px;
    }
    .about-story-text h1 {
        font-size: 32px;
    }
    .about-story-image img {
        max-width: 100%;
    }
}

/* Wide Screen */
@media (min-width: 1025px) {
    .about-story-container {
        grid-template-columns: 1fr 1fr;
        gap: 70px;
    }
    .about-story-text h1 {
        font-size: 52px;
    }
}
</style>

<!-- HTML -->
<section class="about-story">
    <div class="about-story-container">
        <div class="about-story-text fade-in" style="animation-delay: 0.1s">
            <div class="tag">
                WHERE ANCIENT VEDIC WISDOM MEETS MODERN SCIENCE
            </div>
            <h1>Our Story</h1>
            <p>We don’t just make products. We reimagine daily rituals — from cleansing spaces to nourishing the body — with purity, intention, and proven effectiveness.</p>
            <p>Starting with Saltveda, and now expanding into Mealveda and beyond, every creation at Tapaveda carries the same promise: Ancient Wisdom. Modern Solutions. Conscious Living.</p>
        </div>

        <div class="about-story-image fade-in" style="animation-delay: 0.4s">
            <img src="https://tapaveda.com/wp-content/uploads/2026/04/1.png" alt="Tapaveda Story">
        </div>
    </div>
</section>/* End custom CSS */