* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Purani white space hatane ke liye */
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}


:root {
    --lms-navy: #1a2d42;
    --lms-crimson: #b32d44;
    --text-dark: #333;
    --white: #ffffff;
}

.main-header {
    position: relative;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background-color: var(--lms-navy);
    color: var(--white);
    padding: 10px 10%;
    font-size: 13px;
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons a {
    color: white;
    margin: 0 8px;
    font-size: 14px;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .top-bar {
        background-color: var(--lms-navy);
        color: var(--white);
        padding: 10px 15px;
        font-size: 13px;
        display: block;
        width: 100%;
        position: relative;
        z-index: 9999;
    }

    .top-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        /* important */
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .contact-info span {
        margin-right: 0;
        font-size: 12px;
    }

    .top-right {
        flex-direction: column;
        gap: 10px;
    }

    .social-icons {
        text-align: center;
    }

    .auth-links {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: block !important;
    }
}


.navbar {
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    height: 60px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: var(--lms-crimson);
    font-weight: 900;
    line-height: 1;
}

.brand-name {
    font-size: 24px;
}

.brand-sub {
    font-size: 18px;
}

.nav-actions {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Base Button Style */
.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Icon Styling */
.icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    display: none;
}

/* Colors */
.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #25D366;
}

/* Feedback when tapped (Mobile "Hover") */
.whatsapp-btn:active,
.call-btn:active {
    transform: scale(0.9);
    filter: brightness(1.1);
}

@media screen and (max-width: 480px) {
    .nav-actions {
        right: 15px;
        bottom: 20px;
        position: fixed;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

.buy-now-btn {
    background: var(--lms-crimson);
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.2;
}

.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-icon span {
    width: 25px;
    height: 3px;
    background: #333;
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 10px 15px;
    }

    .main-logo {
        height: 45px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-sub {
        font-size: 14px;
    }

    .buy-now-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* Main Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--white);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--lms-crimson);
    line-height: 1;
}

/* Nav Links - Center Aligned */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 17px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--lms-crimson);
}


.buy-now-btn {
    background: var(--lms-crimson);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}

.buy-now-btn:hover {
    background: var(--lms-navy);
}

.search-icon {
    cursor: pointer;
    color: var(--lms-navy);
    font-size: 18px;
}

/* Mobile Menu Fix */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .nav-links a {
        font-size: 14px;
    }

    .top-bar {
        display: none;
    }

    .logo img {
        margin-left: 0px;
    }
}

.view-all-container {
    text-align: center;
    margin-top: 40px;
}

.main-blog-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: #2d5a27;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.2);
    transition: all 0.3s ease;
}

.main-blog-button:hover {
    background-color: #1a7a8c;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(26, 122, 140, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        margin-right: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: row;
        position: absolute;
        right: 0;
        top: 70px;
        background: none;
        margin-top: 60px;
        margin-right: 10px;
    }

    .nav-links.active {
        display: flex;
    }
}


/***********************.***************************************************************************************************/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f5f5f5;
    color: #222
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.product-img {
    position: sticky;
    height: fit-content;
    margin-top: 30px;
    margin-right: 20px;
}

.product-img {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-left: -100px;
}

.product-img img {
    max-width: 650px;
    border-radius: 10px;
    height: 600px;
}

#moringa {
    background-size: cover;

}

.badge {
    position: absolute;
    background: #6a1b9a;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px
}

.title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

.rating {
    color: #f4b400;
    margin-bottom: 10px
}

.tabs {
    display: flex;
    gap: 20px;
    margin: 20px 0
}

.tabs span {
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent
}

.tabs span.active {
    border-color: red;
    color: red
}

.desc {
    line-height: 1.7;
    color: #555
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px
}

.feature {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05)
}

.pricing {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08)
}

.card p {
    font-size: 12px;
}

.card h3 {
    margin: 0
}

.price {
    font-size: 20px;
    color: green;
    font-weight: 700
}

.old {
    text-decoration: line-through;
    color: #888;
    font-size: 14px
}

.offer {
    background: linear-gradient(90deg, #f6d365, #fda085);
    padding: 12px;
    border-radius: 10px;
    margin-top: 20px
}

.btn {
    background: #ffd600;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer
}

.btn:hover {
    background: #ffcc00
}

@media (max-width: 768px) {

    /* Stack the main sections */
    .container {
        grid-template-columns: 1fr;
        padding: 10px;
        margin-top: 10px;
        gap: 20px;
    }

    /* Reset product image shifts for mobile */
    .product-img {
        margin-left: 0;
        margin-right: 0;
        position: relative;
        padding: 10px;
    }

    .product-img img {
        max-width: 100%;
        height: auto;
        /* Important to keep aspect ratio */
    }

    /* Keep the title size readable */
    .title {
        font-size: 22px;
        text-align: center;
    }

    /* Feature items: switch to 2 columns if space allows, or 1 for small screens */
    .features {
        grid-template-columns: 1fr 1fr;
        /* As seen in image_869c87 */
        gap: 8px;
    }

    .feature {
        font-size: 13px;
        padding: 10px 5px;
        text-align: center;
    }

    /* Price Cards: Make them scroll horizontally instead of stacking */
    .pricing {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll for iOS */
    }

    .card {
        min-width: 250px;
        /* Forces them to go off-screen and scroll */
        flex-shrink: 0;
    }

    /* Adjust the scrolling ticker text size */
    .ticker-item {
        font-size: 14px;
        margin-right: 30px;
    }

    /* Fixed buttons for mobile often work better */
    .btn {
        font-size: 16px;
        padding: 12px;
    }
}

/********************************************************/

:root {
    --primary-teal: #1a7a8c;
    --accent-red: #c0392b;
    --text-main: #333;
    --text-muted: #777;
    --bg-light: #f9f9f9;
}

/* Section */
.chem-info-section {
    position: relative;
    padding: 80px 5%;
    background-color: #f5f1f1;
}

/* Header overlay */
.chem-section-header {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.chem-news-title {
    font-size: 2rem;
    color: green;
    font-weight: 800;
    text-transform: uppercase;
}

.chem-title-line {
    width: 60px;
    height: 3px;
    background-color: green;
    margin: 10px auto;
}

.chem-header-content p {
    max-width: 500px;
    margin: auto;
    color: green;
}

/* Image overlay */
.chem-card-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Grid */
.chem-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

/* Card */
.chem-info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 363px;
    height: 400px;
}

.chem-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

/* Image */
.chem-card-img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.chem-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Date */
.chem-card-date {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

/* Content */
.chem-card-body {
    padding: 25px;
}

.chem-card-body h5,
.chem-card-body h6 {
    color: #1e3a5f;
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.chem-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Featured */
.chem-info-card.featured {
    grid-row: span 1;
}

.chem-info-card.featured .chem-card-img {
    height: 200px;
}

/* Responsive */
@media (max-width: 1024px) {
    .chem-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .chem-info-grid {
        grid-template-columns: 1fr;
        margin-top: 100px;
    }

    .chem-info-card.featured {
        grid-row: auto;
    }

    .chem-info-grid {
        margin-top: 200px;
        margin-left: -30px;
    }

}


footer {
    text-align: center;
    padding: 40px;
    background: #2d5a27;
    color: white;
}

:root {
    --primary-green: #2d5a27;
    --accent-gold: #c5a059;
    --light-bg: #f9fbf9;
    --text-dark: #333;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.moringa-horizontal-section {
    background-color: var(--light-bg);
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: var(--text-dark);
}

/* Container */
.moringa-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT SIDE */
.moringa-title-box {
    text-align: center;
    margin-bottom: 50px;
}

.moringa-main-title {
    font-size: 3rem;
    line-height: 1.1;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.moringa-main-title span {
    color: var(--accent-gold);
    font-weight: 300;
}

/* Usage Card */
.moringa-usage-card {
    margin: 20px auto 0;
}

.moringa-usage-card h5 {
    margin-bottom: 8px;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RIGHT SIDE GRID */
.moringa-benefits-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Cards */
.moringa-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.moringa-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-green);
}

.card-num {
    font-size: 0.85rem;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.moringa-card h4 {
    margin-bottom: 8px;
    color: var(--primary-green);
}

.moringa-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Footer */
.moringa-mini-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.mini-item {
    font-size: 0.85rem;
    color: var(--primary-green);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .moringa-container {
        flex-direction: column;
        text-align: center;
    }

    .moringa-benefits-flow {
        grid-template-columns: 1fr;
    }

    .moringa-usage-card {
        margin: 0 auto;
        border-left: none;
        border-top: 5px solid var(--accent-gold);
    }

    .moringa-mini-footer {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .moringa-main-title {
        font-size: 2rem;
    }
}

.footer-text {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/*****************************************************************************/

.scrolling-ticker {
    width: 100%;
    background-color: #ffff00;
    /* Bright yellow from image_88daa0.png */
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 40px;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    /* Initial starting position */
    animation: ticker-scroll 30s linear infinite;
    /* Adjust speed here */
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-right: 50px;
    /* Space between each point */
    text-transform: uppercase;
}

.ticker-item i {
    font-size: 24px;
    margin-right: 10px;
}

/* Keyframes for Right to Left Movement */
@keyframes ticker-scroll {
    0% {
        transform: translate3d(-40%, 0, 0);

    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Stop scrolling when user hovers (optional) */
.scrolling-ticker:hover .ticker-content {
    animation-play-state: initial;
}

/**************************************************************************/

/* Hide all tab panes by default */
.tab-pane {
    display: none;
}

/* Show only the active tab pane */
.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Active tab button styling */
.tabs span {
    cursor: pointer;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.tabs span.active {
    border-color: #e41e26;
    /* Red color from image */
    color: #e41e26;
}