:root {
    --background: red;
    --foreground: 222 47% 11%;

    --primary: red;
    --primary-foreground: 210 40% 98%;

    --secondary: 35 95% 55%;
    --secondary-foreground: 222 47% 11%;

    --muted: 210 40% 96%;
    --muted-foreground: 215 16% 47%;

    --border: 214 32% 91%;
    --radius: 0.5rem;

    /* Extra shared colors */
    --success: #22c55e;
    --success-hover: #16a34a;
}

/* ================= GLOBAL ================= */

body {
    background: hsl(var(--background));
    color: hsl(var(--foreground));
}

/* Shared hover transition */
.btn-primary,
.btn-whatsapp,
.arya-btn-primary,
.market-card,
.business-card {
    transition: all 0.3s ease;
}

/* ================= NAVBAR ================= */

.navbar {
    background: #fff;
    border-bottom: 1px solid black;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: hsl(var(--primary));
}

.navbar-brand span {
    color: hsl(var(--secondary));
}

.nav-link {
    color: hsl(var(--foreground));
    font-weight: 500;
}

.nav-link:hover {
    color: hsl(var(--primary));
}

/* Navbar spacing cleanup */
.arya-nav-links .nav-item {
    padding-right: 20px;
}

@media (max-width: 991px) {

    .arya-nav-links .nav-item {
        padding-right: 0;
        padding-bottom: 8px;
    }

    .arya-auth {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .arya-auth .btn {
        width: 100%;
    }
}


/* ================= BUTTONS ================= */

.btn-primary,
.arya-btn-primary {
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-primary:hover {
    background: hsl(var(--secondary));
    border-color: hsl(var(--secondary));
    color: #000;
}


.arya-btn-support {
    background: whitesmoke;
    color: #000000;
    border: 1px solid grey;
    border-radius: var(--radius);
    font-weight: 500;
}




/* ================= HERO ================= */

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fff, #f8fafc);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #bb17171e;
    color: red;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #bb17171e;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.hero-title span {
    color: red;
}

.hero-description {
    color: hsl(var(--muted-foreground));
    font-size: 1.05rem;
    max-width: 520px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    max-width: 100%;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--success);
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}



footer {
   
    color: #0000006b;
}

footer a,
.social-icons a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
}

footer a:hover,
.social-icons a:hover {
    color: #000;
}


.social-icons a {
    font-size: 16px;
    margin-left: 12px;
}


/* ================= CTA ================= */

.arya-cta-section{
    background-color: #0f172b;
}
.arya-cta-title {
    color: #fff;
    font-size: 60px;
    font-weight: bolder;
}

.arya-cta-subtitle {
    color: whitesmoke;
    font-size: 22px;
}

.category-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-image {
    background: #f8f9fa;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    max-width: 60%;
    opacity: 0.8;
}

.category-content {
    padding: 24px;
}

.category-title {
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.category-title::before {
    content: '';
    width: 18px;
    height: 3px;
    background: #e63946;
    position: absolute;
    bottom: -6px;
    left: 0;
}

.category-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.category-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.category-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border: 2px solid #e63946;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

.category-link {
    color: #e63946;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
}

.category-link span {
    margin-left: 6px;
}

/* Visual Grid */
.why-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.visual-card {
    border-radius: 16px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-card.light-red {
    background: #fdeaea;
}

.visual-card.light-gray {
    background: #f3f6f9;
}


.visual-card .icon {
    font-size: 36px;
    color: #e63946;
    opacity: 0.5;
}

.why-icon i {
    font-size: 16px;
    color: #e63946;
}


.visual-card .label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 13px;
    color: #666;
}

.visual-card.image-card {
    padding: 0;
    overflow: hidden;
}

.visual-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Benefits List */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #222;
}

.why-icon {
    min-width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fdeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.why-list small {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}
