﻿:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --bg-color: #f8f9fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, .1);
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, .15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-color);
    overflow-x: hidden;
}

/* ==== HEADER ==== */
.top-header {
    background-color: white !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

.logo {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .logo i {
        font-size: 32px;
    }

.nav-links,
.auth-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .nav-links a,
    .auth-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        border-radius: 20px;
        transition: all .3s;
    }

        .nav-links a:hover {
            background: rgba(255, 255, 255, .2);
            transform: translateY(-2px);
        }

    .auth-links a {
        background: rgba(255, 255, 255, .1);
    }

        .auth-links a:hover {
            background: rgba(255, 255, 255, .25);
            transform: translateY(-2px);
        }

/* ==== HERO (full‑width) ==== */
/* ==== HERO (full-width) ==== */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    padding: 0;
    /* was 0 */
    margin-bottom: 0;
    /* NEW – kill any bottom gap */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: auto;
    background: var(--white);
    /*    border-radius: 24px;*/
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    /* remove any extra margin */
    margin-bottom: 0 !important;
}

.hero-content {
    padding: 60px 50px;
    background: linear-gradient(135deg, #fff, #faf5ff);
}

.hero-title {
    background-color: #b653cd !important;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.buy-products-btn {
    background-color: #b653cd !important;
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    .buy-products-btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

/* Carousel */
.carousel-product-card {
    background: var(--white);
    /*    border-radius: 20px;*/
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
}

    .carousel-product-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-indicators {
    bottom: 10px;
}

    .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 0%;
        background: var(--primary-color);
        opacity: .5;
    }

        .carousel-indicators button.active {
            opacity: 1;
            transform: scale(1.2);
        }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background: var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    padding: 10px;
}

/* ==== ECOSYSTEM SECTION ==== */
.ecosystem-section {
    background: linear-gradient(135deg, #faf5ff, #f0f9ff);
    padding: 0 0 50px;
    /* keep only bottom padding */
    margin-top: 0;
    /* NEW – kill top gap */
    position: relative;
    overflow: hidden;
}

    .ecosystem-section::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
        border-radius: 50%;
    }

    .ecosystem-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent);
        border-radius: 50%;
    }

.ecosystem-container {
    display: flex;
    align-items: stretch;
    max-width: 1300px;
    margin: auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    overflow: hidden;
    /* make sure container itself adds no extra space */
    margin-top: 0 !important;
}

.ecosystem-image {
    flex: 0 0 45%;
    position: relative;
    height: 100%;
}

.image-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: all 0.4s;
}

    .image-wrapper:hover {
        transform: scale(1.03);
    }

    .image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s;
    }

    .image-wrapper:hover img {
        transform: scale(1.05);
    }

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    opacity: 0;
    transition: opacity 0.4s;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.ecosystem-content {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.ecosystem-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
    background-color: #b653cd !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecosystem-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.ecosystem-features {
    display: flex;
    gap: 15px;
    margin: 25px 0 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    flex: 1;
    min-width: 150px;
}

    .feature-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
        background: var(--white);
    }

    .feature-item i {
        font-size: 24px;
        color: var(--primary-color);
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .feature-item h4 {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }

    .feature-item p {
        display: none;
    }

.learn-more-btn {
    background-color: #b653cd !important;
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .learn-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    }

    .learn-more-btn i {
        transition: transform 0.3s;
    }

    .learn-more-btn:hover i {
        transform: translateX(5px);
    }

/* RESPONSIVE STYLES FOR ECOSYSTEM SECTION */
@media (max-width:991px) {
    .ecosystem-container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 20px;
    }

    .ecosystem-title {
        font-size: 36px;
    }

    .image-wrapper {
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .ecosystem-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .ecosystem-image,
    .ecosystem-content {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .ecosystem-title {
        font-size: 28px;
        text-align: center;
    }

    .ecosystem-description {
        font-size: 16px;
        text-align: justify;
    }

    .ecosystem-features {
        flex-direction: column;
    }

    .feature-item {
        flex-direction: row;
        padding: 10px 0;
    }

    .learn-more-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:576px) {
    .ecosystem-section {
        padding: 40px 0;
    }

    .ecosystem-container {
        gap: 30px;
    }

    .ecosystem-title {
        font-size: 26px;
    }

    .ecosystem-description {
        font-size: 15px;
    }

    .feature-item {
        padding: 15px;
        gap: 15px;
    }

        .feature-item i {
            width: 50px;
            height: 50px;
            font-size: 24px;
        }

        .feature-item h4 {
            font-size: 16px;
        }
}

/* ==== WHY CHOOSE US SECTION ==== */
.why-choose-section {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: var(--white);
    padding: 60px 0;
    margin: 0;
    overflow: hidden;
}

    .why-choose-section .section-title {
        font-size: 38px;
        font-weight: 800;
        color: var(--white);
        background-color: #b653cd !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .why-choose-section .section-title1 {
        font-size: 38px;
        font-weight: 800;
        color: var(--text-dark);
        background-color: #b653cd !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .why-choose-section .underline {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

    .why-choose-section .section-subtitle {
        font-size: 18px;
        color: #d1d5db;
        max-width: 700px;
        margin: 0 auto;
    }

/* Custom Card Styling */
.custom-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 22px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

    .custom-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 0;
    }

    .custom-card:hover::before {
        opacity: 1;
    }

    .custom-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-color: var(--primary-color);
    }

.check-icon {
    font-size: 24px;
    color: var(--primary-color);
    background: rgba(139, 92, 246, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 16px;
    transition: all 0.3s;
    z-index: 1;
}

.custom-card:hover .check-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.card-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    z-index: 1;
    position: relative;
}

/* Outer card for subtle depth */
.outer-card {
    padding: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border-radius: 20px;
    transition: all 0.3s;
}

    .outer-card:hover {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    }

/* Responsive */
@media (max-width: 992px) {
    .why-choose-section {
        padding: 50px 0;
    }

        .why-choose-section .section-title {
            font-size: 32px;
        }

    .card-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .custom-card {
        padding: 16px 18px;
    }

    .check-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .why-choose-section .section-title {
        font-size: 28px;
    }

    .why-choose-section .section-subtitle {
        font-size: 16px;
    }

    .outer-card {
        padding: 6px;
    }
}


/* ==== TESTIMONIALS SECTION ==== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa, #e0e7ff);
    padding: 60px 0;
    margin: 0;
    overflow: hidden;
}

    .testimonials-section .section-title {
        font-size: 38px;
        font-weight: 800;
        background-color: #b653cd !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .testimonials-section .underline {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

    .testimonials-section .section-subtitle {
        font-size: 18px;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
    }

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background-color: #b653cd;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .testimonial-card:hover::before {
        opacity: 1;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.user-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    flex-shrink: 0;
}

    .user-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
    font-style: italic;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
}

    .stars i {
        margin-right: 2px;
    }

/* Responsive */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .user-avatar {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .user-avatar {
        width: 55px;
        height: 55px;
    }
}


/* ==== CONTACT SECTION ==== */
.contact-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    padding: 70px 0;
    margin: 0;
    overflow: hidden;
    border-top: 1px solid #e5e7eb;
}

.contact-content {
    max-width: 500px;
}

.contact-title {
    font-size: 38px;
    font-weight: 800;
    background-color: #b653cd !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-features {
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

    .feature i {
        font-size: 18px;
        color: var(--primary-color);
        background: rgba(139, 92, 246, 0.1);
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

/* CTA Buttons */
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.25);
}

.cta-buttons .btn-primary {
    background-color: #b653cd !important;
    color: white;
}

    .cta-buttons .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
    }

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

    .cta-buttons .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #e5e7eb;
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
}

    .info-item i {
        font-size: 20px;
        color: var(--primary-color);
        background: rgba(139, 92, 246, 0.1);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .info-item strong {
        color: var(--text-dark);
        display: block;
        margin-bottom: 2px;
    }

    .info-item a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }

        .info-item a:hover {
            color: var(--secondary-color);
            text-decoration: underline;
        }

/* Responsive */
@media (max-width: 992px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-content,
    .contact-info-card {
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .info-item {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 20px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .contact-info-card {
        padding: 24px;
    }
}


/* ============================================================= */
/* ====================== ABOUT PAGE STYLES ==================== */
/* ============================================================= */
.about-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-bottom: 1px solid #e5e7eb;
    padding: 80px 20px;
    text-align: center;
}

    .about-hero .display-4 {
        font-weight: 800;
        margin-bottom: 16px;
        background-color: #b653cd !important;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .about-hero .lead {
        max-width: 700px;
        margin: 0 auto;
        color: var(--text-light);
        opacity: 0.9;
    }

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        border-radius: 2px;
    }

.section-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Image Hover */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .about-image-wrapper img {
        transition: transform 0.5s ease;
    }

    .about-image-wrapper:hover img {
        transform: scale(1.05);
    }

    .about-image-wrapper .image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
        opacity: 0;
        transition: opacity 0.4s;
    }

    .about-image-wrapper:hover .image-overlay {
        opacity: 1;
    }

/* Step Cards */
.step-card {
    background: white;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.step-card:hover .step-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Commission Table */
.commission-table-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.commission-table {
    margin: 0;
    font-size: 0.95rem;
}

    .commission-table thead {
        background-color: #b653cd !important;
        color: white;
    }

    .commission-table th,
    .commission-table td {
        text-align: center;
        vertical-align: middle;
        padding: 14px 12px;
    }

    .commission-table tbody tr:hover {
        background: rgba(139, 92, 246, 0.05);
    }

/* ============================================================= */
/* ====================== RESPONSIVE =========================== */
/* ============================================================= */

@media (max-width: 991px) {

    .hero-container,
    .ecosystem-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .about-hero {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        gap: 12px;
    }

    .nav-links a,
    .auth-links a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .step-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 20px;
    }

        .logo i {
            font-size: 24px;
        }

    .nav-links a span,
    .auth-links a span {
        display: none;
    }

    .hero-title {
        font-size: 24px;
    }

    .buy-products-btn {
        width: 100%;
        justify-content: center;
    }

    .about-hero .display-4 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

/* ==== PRODUCTS PAGE STYLES ==== */

/* Active Nav Link */
.nav-links a.active {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-weight: 700;
}

/* Hero Banner */
.products-hero {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-bottom: 1px solid #e5e7eb;
}

.text-gradient {
    background-color: #b653cd !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.cashback-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}

.product-info {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 500;
}

.btn-buy-now {
    margin-top: auto;
    background-color: #b653cd !important;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

    .btn-buy-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    }

/* Responsive */
@media (max-width: 768px) {
    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 15px;
    }

    .product-price {
        font-size: 16px;
    }
}


/* Footer base styling */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: #f1f5f9;
    padding: 60px 15px 30px;
    font-family: 'Poppins', sans-serif;
}

    /* Container */
    .footer .container {
        max-width: 1400px;
        margin: auto;
    }

    /* Headings */
    .footer h6 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #00bcd4; /* Accent color */
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* List links */
    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: 12px;
        }

            .footer ul li a {
                color: #cbd5e1;
                text-decoration: none;
                font-size: 14px;
                transition: 0.3s;
            }

                .footer ul li a:hover {
                    color: #00bcd4;
                    transform: translateX(4px);
                }

    /* Social icons */
    .footer .social-icons {
        display: flex;
        gap: 10px;
    }

    .footer .social-btn {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #1f2937;
        color: #00bcd4;
        font-size: 16px;
        transition: 0.3s;
    }

        .footer .social-btn:hover {
            background: #00bcd4;
            color: #111827;
            transform: scale(1.1);
        }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

    .footer-bottom a {
        color: #00bcd4;
        text-decoration: none;
        margin: 0 5px;
        transition: 0.3s;
    }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer h6 {
        text-align: center;
    }

    .footer ul {
        text-align: center;
        padding-left: 0;
    }

    .footer .social-icons {
        justify-content: center;
    }

    .footer-bottom p {
        text-align: center;
    }
}

}

/* ==== RESPONSIVE ==== */
@media (max-width:991px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 30px;
    }

    .hero-title {
        font-size: 32px;
    }

    .carousel-product-card {
        height: 420px;
    }

        .carousel-product-card img {
            height: 300px;
        }
}

@media (max-width:768px) {
    .navbar-container {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        font-size: 24px;
    }

    .nav-links,
    .auth-links {
        gap: 8px;
    }

        .nav-links a,
        .auth-links a {
            font-size: 12px;
            padding: 6px 10px;
        }

    .hero-content {
        padding: 25px;
    }

    .hero-title {
        font-size: 28px;
    }

    .buy-products-btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    .carousel-product-card {
        height: 380px;
    }

        .carousel-product-card img {
            height: 260px;
        }
}

@media (max-width:576px) {
    .logo {
        font-size: 20px;
    }

        .logo i {
            font-size: 24px;
        }

    .nav-links a span,
    .auth-links a span {
        display: none;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .buy-products-btn {
        padding: 12px 25px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }

    .carousel-product-card {
        height: 340px;
    }

        .carousel-product-card img {
            height: 220px;
        }
}
