﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafcff;
    color: #0f172a;
    line-height: 1.5;
    scroll-behavior: smooth;
    position: relative;
}

/* ========== SVG BACKGROUND ========== */
.svg-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

    .svg-bg svg {
        width: 100%;
        height: 100%;
        opacity: 0.35;
    }

.overlay-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 245, 0.4) 0%, rgba(248, 250, 252, 0.85) 100%);
    z-index: -1;
    pointer-events: none;
}

/* ========== MULTI-COLOR MENU BAR ========== */
.menu-bar {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 25%, #10B981 50%, #F59E0B 75%, #EF4444 100%);
    padding: 0.9rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    color: white;
    font-weight: 800;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.logo span {
    font-weight: 400;
    font-size: 0.9rem;
    display: block;
    color: #FFE4B5;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

    .nav-links li a {
        text-decoration: none;
        font-weight: 600;
        color: white;
        font-size: 1rem;
        padding: 0.5rem 0;
        transition: 0.2s;
        border-bottom: 2px solid transparent;
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            border-bottom-color: white;
        }

    .nav-links .btn-outline-light {
        border: 2px solid white;
        padding: 0.4rem 1.2rem;
        border-radius: 40px;
        background: rgba(255, 255, 255, 0.1);
    }

        .nav-links .btn-outline-light:hover {
            background: white;
            color: #1E3A8A;
        }

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ========== PAGE CONTAINER ========== */
.page-container {
    min-height: calc(100vh - 200px);
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========== BUTTONS ========== */
.btn-primary {
    background: linear-gradient(100deg, #1E3A8A, #3B82F6);
    border: none;
    padding: 0.9rem 2rem;
    color: white;
    font-weight: 700;
    border-radius: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    }

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: #f1f5f9;
    color: #1E3A8A;
    border: 1px solid #cbd5e1;
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

    .btn-secondary:hover {
        background: #e2e8f0;
    }

.btn-card {
    background: #f1f5f9;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 40px;
    font-weight: 600;
    color: #1E3A8A;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

    .btn-card:hover {
        background: #1E3A8A;
        color: white;
    }

/* ========== AUTO-SLIDING HERO BANNER ========== */
.hero-slider-container {
    position: relative;
    margin-bottom: 3rem;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        position: relative;
    }

.slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 520px;
    padding: 4rem 2rem;
    border-radius: 48px;
}

/* Different background for each slide */
.slide:nth-child(1) .slide-content {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92), rgba(59, 130, 246, 0.88)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover, auto;
}

.slide:nth-child(2) .slide-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(5, 150, 105, 0.88)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="rgba(255,255,255,0.03)"/></svg>');
}

.slide:nth-child(3) .slide-content {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.92), rgba(217, 119, 6, 0.88)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,15 85,85 15,85" fill="rgba(255,255,255,0.05)"/></svg>');
}

.slide:nth-child(4) .slide-content {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.92), rgba(220, 38, 38, 0.88)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 L80,20 L80,80 L20,80 Z" fill="rgba(255,255,255,0.05)"/></svg>');
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.2);
    }

    .dot.active {
        background: white;
        width: 30px;
        border-radius: 12px;
    }

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slider-arrow:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(1.1);
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
        background: white;
    }

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.feature-card p {
    color: #475569;
}

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 48px;
    padding: 2.5rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== SECTION TITLE ========== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0f172a;
    position: relative;
}

    .section-title:after {
        content: '';
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #3B82F6, #10B981);
        display: block;
        margin: 0.8rem auto 0;
        border-radius: 4px;
    }

/* ========== FILTER BAR ========== */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid #cbd5e1;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    color: #1f2937;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #1E3A8A;
        color: white;
        border-color: #1E3A8A;
    }

/* ========== PRODUCT GRID ========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
        background: white;
    }

.product-img {
    height: 200px;
    background: linear-gradient(145deg, #eef2ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info {
    padding: 1.5rem;
}

.product-cat {
    color: #3B82F6;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

/* MLM Pricing */
.mlm-pricing {
    background: #f8fafc;
    padding: 0.8rem;
    border-radius: 16px;
    margin: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bv-box {
    background: linear-gradient(135deg, #1E3A8A, #2563eb);
    padding: 0.25rem 0.8rem;
    border-radius: 40px;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mrp strike {
    color: #94a3b8;
}

.member-price {
    font-weight: 800;
    font-size: 1.3rem;
    color: #0f172a;
}

.price-note {
    font-size: 0.7rem;
    color: #3B82F6;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: #475569;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.catalogue-note {
    text-align: center;
    margin-top: 2rem;
    color: #2563eb;
    background: rgba(255, 255, 240, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    display: inline-block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-wrapper {
    display: flex;
    justify-content: center;
}

.product-detail-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-detail-img {
    flex: 1;
    min-width: 250px;
    background: linear-gradient(145deg, #eef2ff, #fff);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-detail-info {
    flex: 2;
}

.mlm-badge {
    background: linear-gradient(135deg, #1E3A8A, #2563eb);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    margin: 0.5rem 0;
}

.bv-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E3A8A;
    margin: 1rem 0;
}

.price-section {
    margin: 1rem 0;
}

.member-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.mrp-strike {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #94a3b8;
    margin-left: 1rem;
}

.product-long-desc {
    margin: 1rem 0;
    line-height: 1.6;
    color: #334155;
}

.stock-status {
    margin: 0.5rem 0;
    font-weight: 600;
}

.commission-box {
    background: #eef2ff;
    padding: 1rem;
    border-radius: 24px;
    margin: 1.5rem 0;
}

.back-link {
    margin-top: 1.5rem;
}

/* ========== FORMS ========== */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #1e293b;
    }

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    font-family: inherit;
    transition: 0.2s;
    background: #fefefe;
}

    .form-control:focus {
        outline: none;
        border-color: #3B82F6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }

.link-text {
    text-align: center;
    margin-top: 1.5rem;
}

    .link-text a {
        color: #3B82F6;
        text-decoration: none;
        font-weight: 600;
    }

.message-label {
    display: block;
    text-align: center;
    margin-top: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s;
}

    .contact-info-item:hover {
        transform: translateY(-5px);
        background: white;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.contact-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 32px;
    padding: 2rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* MLM opportunity banner */
.opportunity {
    background: linear-gradient(110deg, #0f172a, #1e293b);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2rem 0;
}

    .opportunity h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

.badge-multi {
    display: inline-flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-weight: 500;
}

/* Toast Message */
.toast-msg {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 60px;
    font-size: 0.85rem;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    font-weight: 500;
}

/* Footer */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.disclaimer {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
        padding: 1rem;
        margin-top: 1rem;
    }

        .nav-links.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-container {
        padding: 2rem 1rem;
    }

    .hero-slider {
        min-height: 420px;
    }

    .slide-content {
        min-height: 420px;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 400px;
    }

    .slide-content {
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

        .dot.active {
            width: 20px;
        }
}

@media (max-width: 550px) {
    .hero-slider {
        min-height: 380px;
    }

    .slide-content {
        min-height: 380px;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 6px 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

        .dot.active {
            width: 20px;
        }

    .stats-banner {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-card {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 350px;
    }

    .slide-content {
        min-height: 350px;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}


/*about aside section*/

/* Main container for demo — mimics homepage section */
.homepage-section {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* === ABOUT US BOX (card style) === */
.about-us-card {
    background: #ffffff;
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .about-us-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 30px 55px -12px rgba(0, 0, 0, 0.25);
    }

/* inner grid layout: left content / right visual (optional decorative) */
.about-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* content side (text & values) */
.about-content {
    flex: 2;
    padding: 2.5rem 2.8rem;
    background: #fff;
}

/* decorative right panel (brand accent) */
.about-visual {
    flex: 1.2;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #1e293b;
    text-align: center;
    overflow: hidden;
}

    .about-visual::before {
        content: "✨";
        font-size: 18rem;
        opacity: 0.12;
        position: absolute;
        bottom: -20px;
        right: -30px;
        font-family: monospace;
        pointer-events: none;
    }

.visual-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 12px rgba(0,0,0,0.15));
}

.visual-quote {
    font-weight: 700;
    font-size: 1.4rem;
    background: rgba(255,255,240,0.9);
    padding: 0.5rem 1rem;
    border-radius: 60px;
    display: inline-block;
    backdrop-filter: blur(2px);
}

/* badge & header */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef3c7;
    color: #b45309;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 40px;
    letter-spacing: 0.3px;
    margin-bottom: 1.2rem;
}

    .badge i {
        font-size: 0.8rem;
    }

.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(125deg, #1e293b, #3b2a1f);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.highlight {
    color: #e67e22;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
}

.description {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 1.2rem 0 1.8rem 0;
}

/* earning system + incense stick highlight */
.key-points {
    background: #fef9ef;
    border-left: 5px solid #f97316;
    padding: 1rem 1.4rem;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

    .key-points p {
        font-weight: 500;
        color: #2c3e2f;
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .key-points i {
        font-size: 1.6rem;
        color: #f97316;
    }

.strong-text {
    font-weight: 700;
    color: #b45309;
}

/* opportunity grid for target groups */
.opportunity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 1.8rem 0;
}

.opp-item {
    background: #f1f5f9;
    border-radius: 80px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1e293b;
    transition: all 0.2s;
}

    .opp-item i {
        color: #e67e22;
        font-size: 0.9rem;
    }

    .opp-item:hover {
        background: #fed7aa;
        transform: scale(1.02);
    }

/* CTA button */
.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    margin-top: 0.5rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

    .btn-join i {
        transition: transform 0.2s;
    }

    .btn-join:hover {
        background: #e67e22;
        transform: scale(1.02);
        gap: 14px;
    }

        .btn-join:hover i {
            transform: translateX(4px);
        }

/* Responsive */
@media (max-width: 880px) {
    .about-inner {
        flex-direction: column;
    }

    .about-content {
        padding: 1.8rem;
    }

    .about-title {
        font-size: 1.9rem;
    }

    .about-visual {
        padding: 2rem 1rem;
        min-height: 200px;
    }

    .visual-icon {
        font-size: 3.5rem;
    }

    .visual-quote {
        font-size: 1.1rem;
    }

    .opportunity-grid {
        gap: 0.7rem;
    }
}

@media (max-width: 500px) {
    body {
        padding: 1rem;
    }

    .about-content {
        padding: 1.4rem;
    }

    .opp-item {
        font-size: 0.8rem;
        padding: 0.35rem 1rem;
    }

    .btn-join {
        width: 100%;
        justify-content: center;
    }
}

/* small decorative */
.incense-icon {
    font-size: 1.2rem;
    display: inline-block;
    animation: gentleFloat 2s infinite ease;
}

@keyframes gentleFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0px);
    }
}
   

