* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #10b981;
    --primary-foreground: #ffffff;
    --muted-foreground: #6b7280;
    --background: #ffffff;
    --accent: #3b82f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica',
        'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background);
    color: #000;
    direction: rtl;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header .container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    height: 48px;
    width: 48px;
    object-fit: contain;
}

.header-logo-text h1 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

@media (min-width: 768px) {
    .header-logo-text h1 {
        font-size: 20px;
    }
}

.header-logo-text p {
    font-size: 10px;
    color: var(--muted-foreground);
    font-weight: 500;
    line-height: 1.2;
}

nav {
    display: none;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

nav a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

nav button {
    gap: 8px;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.25);
    display: flex;
    align-items: center;
    transition: background-color 0.2s, box-shadow 0.2s;
}

nav button:hover {
    background-color: rgba(16, 185, 129, 0.9);
}

#menuToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    #menuToggle {
        display: none;
    }
}

#mobileNav {
    display: none;
    border-top: 1px solid #e5e7eb;
    background-color: white;
    padding: 16px;
    space-y: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 16px;
}

#mobileNav.active {
    display: flex;
}

#mobileNav a {
    display: block;
    padding: 8px 16px;
    color: var(--muted-foreground);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s;
}

#mobileNav a:hover {
    background-color: #f3f4f6;
}

#mobileNav button {
    width: 100%;
    gap: 8px;
    background-color: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

#mobileNav button:hover {
    background-color: rgba(16, 185, 129, 0.9);
}

/* Utilities */
.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .md\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-3 > * + * {
    margin-top: 12px;
}

.space-y-2 > * + * {
    margin-top: 8px;
}

.space-y-1 > * + * {
    margin-top: 4px;
}

.text-center {
    text-align: center;
}

.text-2xl {
    font-size: 24px;
    line-height: 2rem;
}

.text-xl {
    font-size: 20px;
    line-height: 1.75rem;
}

.text-lg {
    font-size: 18px;
    line-height: 1.625rem;
}

.text-base {
    font-size: 16px;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 14px;
    line-height: 1.375rem;
}

.text-xs {
    font-size: 12px;
    line-height: 1.125rem;
}

.text-[10px] {
    font-size: 10px;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.font-extrabold {
    font-weight: 800;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.bg-white {
    background-color: white;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-muted {
    background-color: #f9fafb;
}

.bg-muted\/30 {
    background-color: rgba(249, 250, 251, 0.3);
}

.bg-gradient-to-b {
    background: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-muted\/50 {
    --tw-gradient-from: rgba(249, 250, 251, 0.5);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 250, 251, 0));
}

.to-background {
    --tw-gradient-to: var(--background);
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.text-white {
    color: white;
}

.text-primary {
    color: var(--primary);
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-700 {
    color: #334155;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-muted-foreground {
    color: var(--muted-foreground);
}

.text-red-600 {
    color: #dc2626;
}

.text-green-600 {
    color: #16a34a;
}

.text-yellow-400 {
    color: #facc15;
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.bg-primary\/10 {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-primary\/5 {
    background-color: rgba(16, 185, 129, 0.05);
}

.bg-primary\/20 {
    background-color: rgba(16, 185, 129, 0.2);
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-slate-200 {
    background-color: #e2e8f0;
}

.bg-white\/90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.border {
    border: 1px solid #e5e7eb;
}

.border-b {
    border-bottom: 1px solid #e5e7eb;
}

.border-t {
    border-top: 1px solid #e5e7eb;
}

.border-l {
    border-left: 1px solid #e5e7eb;
}

.border-r-4 {
    border-right: 4px solid currentColor;
}

.border-none {
    border: none;
}

.border-primary\/20 {
    border-color: rgba(16, 185, 129, 0.2);
}

.border-red-200 {
    border-color: #fecaca;
}

.border-red-500 {
    border-color: #ef4444;
}

.border-slate-800 {
    border-color: #1e293b;
}

.border-white {
    border-color: white;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-tl-2xl {
    border-top-left-radius: 1rem;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-primary\/25 {
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hover\:bg-white:hover {
    background-color: white;
}

.hover\:bg-white\/90:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.hover\:bg-green-700:hover {
    background-color: #15803d;
}

.hover\:bg-muted:hover {
    background-color: #f9fafb;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(16, 185, 129, 0.9);
}

.hover\:bg-\[#20bd5a\]:hover {
    background-color: #20bd5a;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:-translate-y-1:hover {
    transform: translateY(-0.25rem);
}

.hover\:text-primary:hover {
    color: var(--primary);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.transition-all {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-shadow {
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.h-full {
    height: 100%;
}

.h-20 {
    height: 80px;
}

.h-32 {
    height: 128px;
}

.h-10 {
    height: 40px;
}

.h-8 {
    height: 32px;
}

.h-5 {
    height: 20px;
}

.h-4 {
    height: 16px;
}

.h-3 {
    height: 12px;
}

.h-2 {
    height: 8px;
}

.h-64 {
    height: 256px;
}

.h-56 {
    height: 224px;
}

.h-14 {
    height: 56px;
}

.w-full {
    width: 100%;
}

.w-10 {
    width: 40px;
}

.w-8 {
    width: 32px;
}

.w-5 {
    width: 20px;
}

.w-4 {
    width: 16px;
}

.w-3 {
    width: 12px;
}

.w-2 {
    width: 8px;
}

.w-64 {
    width: 256px;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.bottom-6 {
    bottom: 1.5rem;
}

.bottom-0 {
    bottom: 0;
}

.bottom-4 {
    bottom: 1rem;
}

.bottom-2 {
    bottom: 0.5rem;
}

.right-0 {
    right: 0;
}

.right-4 {
    right: 1rem;
}

.right-2 {
    right: 0.5rem;
}

.left-6 {
    left: 1.5rem;
}

.top-0 {
    top: 0;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.-top-12 {
    top: -3rem;
}

.-right-12 {
    right: -3rem;
}

.-bottom-12 {
    bottom: -3rem;
}

.-left-12 {
    left: -3rem;
}

.z-50 {
    z-index: 50;
}

.z-10 {
    z-index: 10;
}

.blur-3xl {
    filter: blur(64px);
}

.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-10 {
    opacity: 0.1;
}

/* Grid Layouts */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:h-56 {
        height: 224px;
    }

    .md\:h-20 {
        height: 80px;
    }

    .md\:mb-8 {
        margin-bottom: 2rem;
    }

    .md\:mb-4 {
        margin-bottom: 1rem;
    }

    .md\:mb-2 {
        margin-bottom: 0.5rem;
    }

    .md\:mt-auto {
        margin-top: auto;
    }

    .md\:gap-8 {
        gap: 2rem;
    }

    .md\:gap-3 {
        gap: 12px;
    }

    .md\:gap-2 {
        gap: 8px;
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-2 {
        order: 2;
    }

    .md\:flex {
        display: flex;
    }

    .md\:text-lg {
        font-size: 18px;
    }

    .md\:text-xl {
        font-size: 20px;
    }

    .md\:text-2xl {
        font-size: 24px;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:justify-end {
        justify-content: flex-end;
    }

    .md\:p-6 {
        padding: 1.5rem;
    }

    .md\:hidden {
        display: none;
    }

    .md\:items-center {
        align-items: center;
    }

    .md\:gap-4 {
        gap: 1rem;
    }

    .md\:max-w-none {
        max-width: none;
    }
}

/* Animations */
@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide In From Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In From Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale Up */
@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Glow Effect */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

/* Shimmer */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to elements */
header {
    animation: slideInTop 0.6s ease-out;
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 1;
}

main section:nth-child(1) {
    animation: fadeIn 0.8s ease-out;
}

main section:nth-child(2) {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

main section:nth-child(3) {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

main section:nth-child(4) {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

main section:nth-child(5) {
    animation: fadeIn 0.8s ease-out 0.8s both;
}

main section:nth-child(6) {
    animation: fadeIn 0.8s ease-out 1s both;
}

/* Card Animations */
.grid > div {
    animation: scaleUp 0.6s ease-out both;
}

.grid > div:nth-child(1) { animation-delay: 0.1s; }
.grid > div:nth-child(2) { animation-delay: 0.2s; }
.grid > div:nth-child(3) { animation-delay: 0.3s; }
.grid > div:nth-child(4) { animation-delay: 0.4s; }
.grid > div:nth-child(5) { animation-delay: 0.5s; }
.grid > div:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Hover Effects */
button:hover {
    animation: buttonHover 0.3s ease-out;
    transform: translateY(-2px);
}

@keyframes buttonHover {
    from {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    to {
        box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    }
}

/* Image Hover */
img {
    transition: transform 0.5s ease-out;
}

/* Link Animations */
a {
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Floating Elements */
.h-2.rounded-full.bg-primary {
    animation: float 2s ease-in-out infinite;
}

/* FAB (Floating Action Button) */
.fixed.bottom-6 button {
    animation: bounceIn 0.6s ease-out, float 3s ease-in-out 0.6s infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.5);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Text Animation */
h1, h2, h3 {
    animation: fadeIn 0.8s ease-out;
}

p {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Service Card Animations */
.overflow-hidden {
    overflow: hidden;
}

.group {
    transition: all 0.3s ease;
}

.group:hover {
    animation: cardLift 0.4s ease-out;
}

@keyframes cardLift {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

/* Image Zoom on Hover */
.group img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.group:hover img {
    transform: scale(1.1);
}

/* Stagger animation for list items */
li {
    animation: slideInRight 0.5s ease-out;
}

li:nth-child(1) { animation-delay: 0s; }
li:nth-child(2) { animation-delay: 0.1s; }
li:nth-child(3) { animation-delay: 0.2s; }
li:nth-child(4) { animation-delay: 0.3s; }
li:nth-child(5) { animation-delay: 0.4s; }

/* Badge Pulse */
.inline-flex.items-center.rounded-full {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer Animation */
footer {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific Elements */
.inline-flex {
    display: inline-flex;
}

.inline-block {
    display: inline-block;
}

.shrink-0 {
    flex-shrink: 0;
}

.mt-auto {
    margin-top: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.p-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pr-7 {
    padding-right: 1.75rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg\:text-4xl {
        font-size: 36px;
    }

    .lg\:max-w-none {
        max-width: none;
    }
}

/* Additional Styles */
button {
    font-family: inherit;
}

button:focus {
    outline: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
}

svg {
    display: inline-block;
}

/* Gradient background for relative positioning */
.gradient-to-t {
    background: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/80 {
    --tw-gradient-from: rgba(0, 0, 0, 0.8);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.via-black\/20 {
    --tw-gradient-via: rgba(0, 0, 0, 0.2);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}