/* NetVian Custom CSS - Fallback for Tailwind */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

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

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

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

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

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

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

/* Text */
.text-center {
    text-align: center;
}

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

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

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

.font-black {
    font-weight: 900;
}

.text-white {
    color: #ffffff;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

.text-blue-600 {
    color: #2563eb;
}

/* Background */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-purple-600 {
    background-color: #9333ea;
}

/* Gradients */
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--gradient-from), var(--gradient-to));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--gradient-from), var(--gradient-to));
}

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

.from-blue-600 {
    --gradient-from: #2563eb;
    --gradient-to: rgba(37, 99, 235, 0);
}

.via-purple-600 {
    --gradient-from: #9333ea;
    --gradient-to: rgba(147, 51, 234, 0);
}

.to-pink-600 {
    --gradient-to: #db2777;
}

.to-purple-600 {
    --gradient-to: #9333ea;
}

/* Flex */
.flex {
    display: flex;
}

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

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

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

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

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Grid */
.grid {
    display: grid;
}

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

/* Responsive */
@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:flex-row {
        flex-direction: row;
    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

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

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

.rounded-3xl {
    border-radius: 1.5rem;
}

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

/* Shadow */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

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

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

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

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

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

/* Transitions */
.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

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

.hover\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:text-blue-600:hover {
    color: #2563eb;
}

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

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

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Opacity */
.opacity-20 {
    opacity: 0.2;
}

.opacity-70 {
    opacity: 0.7;
}

/* Backdrop */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Border */
.border {
    border-width: 1px;
}

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

.border-gray-200 {
    border-color: #e5e7eb;
}

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

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Width & Height */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

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

.max-w-4xl {
    max-width: 56rem;
}

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

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

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

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

.mb-10 {
    margin-bottom: 2.5rem;
}

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

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

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

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

.mt-16 {
    margin-top: 4rem;
}

/* Space */
.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

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

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-x-reverse {
    --tw-space-x-reverse: 1;
}

/* Padding */
.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

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

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

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.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;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

/* Input */
input, textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button */
button, .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-align: center;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2563eb;
}

/* Text utilities */
.leading-tight {
    line-height: 1.25;
}

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

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

/* Hidden */
.hidden {
    display: none;
}

@media (min-width: 768px) {
    .md\:hidden {
        display: none;
    }
    .md\:flex {
        display: flex;
    }
}

@media (min-width: 1024px) {
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* Additional utilities */
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

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

.text-transparent {
    color: transparent;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

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

.block {
    display: block;
}

/* Color utilities */
.text-blue-100 {
    color: #dbeafe;
}

.text-blue-200 {
    color: #bfdbfe;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-purple-50 {
    background-color: #faf5ff;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-indigo-50 {
    background-color: #eef2ff;
}

.bg-teal-50 {
    background-color: #f0fdfa;
}

.bg-yellow-50 {
    background-color: #fefce8;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-blue-900 {
    background-color: #1e3a8a;
}

.text-yellow-300 {
    color: #fde047;
}

.text-pink-300 {
    color: #f9a8d4;
}

.text-green-300 {
    color: #86efac;
}

.text-blue-300 {
    color: #93c5fd;
}

/* Mix blend */
.mix-blend-multiply {
    mix-blend-mode: multiply;
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-xl {
    --tw-blur: blur(24px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.blur-3xl {
    --tw-blur: blur(64px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

/* Width/Height utilities */
.w-6 {
    width: 1.5rem;
}

.w-12 {
    width: 3rem;
}

.w-16 {
    width: 4rem;
}

.w-32 {
    width: 8rem;
}

.w-64 {
    width: 16rem;
}

.w-72 {
    width: 18rem;
}

.w-96 {
    width: 24rem;
}

.h-6 {
    height: 1.5rem;
}

.h-12 {
    height: 3rem;
}

.h-16 {
    height: 4rem;
}

.h-32 {
    height: 8rem;
}

.h-48 {
    height: 12rem;
}

.h-64 {
    height: 16rem;
}

.h-72 {
    height: 18rem;
}

.h-96 {
    height: 24rem;
}

/* Position utilities */
.left-1\/2 {
    left: 50%;
}

.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.top-10 {
    top: 2.5rem;
}

.top-20 {
    top: 5rem;
}

.top-40 {
    top: 10rem;
}

.bottom-8 {
    bottom: 2rem;
}

.bottom-10 {
    bottom: 2.5rem;
}

.bottom-20 {
    bottom: 5rem;
}

.left-10 {
    left: 2.5rem;
}

.left-20 {
    left: 5rem;
}

.right-10 {
    right: 2.5rem;
}

.right-20 {
    right: 5rem;
}

/* Text colors for gradients */
.from-yellow-300 {
    --gradient-from: #fde047;
}

.to-pink-300 {
    --gradient-to: #f9a8d4;
}

.from-blue-600 {
    --gradient-from: #2563eb;
}

.to-purple-600 {
    --gradient-to: #9333ea;
}

.from-purple-600 {
    --gradient-from: #9333ea;
}

.to-pink-600 {
    --gradient-to: #db2777;
}

.from-green-600 {
    --gradient-from: #16a34a;
}

.to-teal-600 {
    --gradient-to: #0d9488;
}

.from-blue-500 {
    --gradient-from: #3b82f6;
}

.to-cyan-500 {
    --gradient-to: #06b6d4;
}

.from-purple-500 {
    --gradient-from: #a855f7;
}

.to-pink-500 {
    --gradient-to: #ec4899;
}

.from-green-500 {
    --gradient-from: #22c55e;
}

.to-emerald-500 {
    --gradient-to: #10b981;
}

.from-orange-500 {
    --gradient-from: #f97316;
}

.to-red-500 {
    --gradient-to: #ef4444;
}

.from-indigo-500 {
    --gradient-from: #6366f1;
}

.to-blue-500 {
    --gradient-to: #3b82f6;
}

.from-teal-500 {
    --gradient-from: #14b8a6;
}

.to-cyan-500 {
    --gradient-to: #06b6d4;
}

.from-yellow-400 {
    --gradient-from: #facc15;
}

.to-orange-500 {
    --gradient-to: #f97316;
}

.from-blue-400 {
    --gradient-from: #60a5fa;
}

.to-cyan-400 {
    --gradient-to: #22d3ee;
}

.from-purple-400 {
    --gradient-from: #c084fc;
}

.to-pink-400 {
    --gradient-to: #f472b6;
}

.from-green-400 {
    --gradient-from: #4ade80;
}

.to-emerald-400 {
    --gradient-to: #34d399;
}

/* Additional responsive utilities */
@media (min-width: 640px) {
    .sm\:inline {
        display: inline;
    }
}

/* Hover effects */
.hover\:bg-blue-400:hover {
    background-color: #60a5fa;
}

.hover\:bg-green-400:hover {
    background-color: #4ade80;
}

.hover\:bg-blue-50:hover {
    background-color: #eff6ff;
}

.hover\:bg-purple-50:hover {
    background-color: #faf5ff;
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

.hover\:underline:hover {
    text-decoration: underline;
}

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

/* List */
.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

/* Border radius utilities */
.-mr-16 {
    margin-right: -4rem;
}

.-mt-16 {
    margin-top: -4rem;
}

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

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

/* Background opacity */
.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

/* Border colors with opacity */
.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-yellow-200 {
    border-color: #fef08a;
}

/* Additional gradient stops */
.from-black\/80 {
    --gradient-from: rgba(0, 0, 0, 0.8);
}

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

.from-blue-600\/20 {
    --gradient-from: rgba(37, 99, 235, 0.2);
}

.to-purple-600\/20 {
    --gradient-to: rgba(147, 51, 234, 0.2);
}

/* Resize */
.resize-none {
    resize: none;
}

/* Placeholder */
.placeholder-white\/70::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus ring */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.focus\:ring-yellow-300:focus {
    --tw-ring-color: #fde047;
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

/* Margin utilities */
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

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

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

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

.mr-4 {
    margin-right: 1rem;
}

/* Aspect ratio */
.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
}

.aspect-h-9 {
    height: 0;
}

.aspect-w-16 .aspect-h-9 {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

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

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

/* Space between */
.space-x-reverse > * + * {
    margin-right: var(--tw-space-x);
    margin-left: 0;
}

/* Additional colors */
.bg-pink-600 {
    background-color: #db2777;
}

.bg-cyan-500 {
    background-color: #06b6d4;
}

.bg-emerald-500 {
    background-color: #10b981;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-teal-500 {
    background-color: #14b8a6;
}

.text-cyan-500 {
    color: #06b6d4;
}

.text-pink-500 {
    color: #ec4899;
}

.text-emerald-500 {
    color: #10b981;
}

.text-orange-500 {
    color: #f97316;
}

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

.text-indigo-500 {
    color: #6366f1;
}

.text-teal-500 {
    color: #14b8a6;
}

/* Prose */
.prose {
    color: #374151;
    max-width: 65ch;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}

.prose h2 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

/* Whitespace */
.whitespace-pre-line {
    white-space: pre-line;
}

/* Additional utility classes for specific use cases */
.bg-gradient-to-l {
    background-image: linear-gradient(to left, var(--gradient-from), var(--gradient-to));
}

/* Service card specific styles */
.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Hero pattern */
.hero-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

/* Additional color utilities */
.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-purple-100 {
    background-color: #f3e8ff;
}

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

.text-blue-600 {
    color: #2563eb;
}

.text-purple-600 {
    color: #9333ea;
}

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

/* Border utilities */
.border-gray-100 {
    border-color: #f3f4f6;
}

/* Additional spacing */
.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Additional responsive utilities */
@media (min-width: 1024px) {
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
}

/* Shadow utilities */
.hover\:shadow-yellow-500\/50:hover {
    box-shadow: 0 20px 25px -5px rgba(234, 179, 8, 0.5), 0 10px 10px -5px rgba(234, 179, 8, 0.04);
}

/* Additional hover effects */
.hover\:from-yellow-500:hover {
    --gradient-from: #eab308;
}

.hover\:to-orange-600:hover {
    --gradient-to: #ea580c;
}

/* Padding utilities */
.p-12 {
    padding: 3rem;
}

.md\:p-12 {
    padding: 3rem;
}

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

/* Additional width utilities */
.min-w-0 {
    min-width: 0;
}

/* Text utilities */
.text-blue-50 {
    color: #eff6ff;
}

/* Background opacity */
.bg-gray-900 {
    background-color: #111827;
}

/* Additional flex utilities */
.flex-wrap {
    flex-wrap: wrap;
}

/* Position utilities */
.inset-y-0 {
    top: 0;
    bottom: 0;
}

.inset-x-0 {
    left: 0;
    right: 0;
}

/* Margin utilities */
.-translate-x-1\/2 {
    transform: translateX(-50%);
}

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

/* Border utilities */
.border-t {
    border-top-width: 1px;
}

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

/* Additional color classes */
.text-gray-200 {
    color: #e5e7eb;
}

.text-gray-300 {
    color: #d1d5db;
}

/* Space utilities */
.space-x-6 > * + * {
    margin-left: 1.5rem;
}

/* Additional gradient colors */
.from-cyan-500 {
    --gradient-from: #06b6d4;
}

.from-emerald-500 {
    --gradient-from: #10b981;
}

.from-red-500 {
    --gradient-from: #ef4444;
}

.from-indigo-500 {
    --gradient-from: #6366f1;
}

.from-teal-500 {
    --gradient-from: #14b8a6;
}

.to-cyan-500 {
    --gradient-to: #06b6d4;
}

.to-emerald-500 {
    --gradient-to: #10b981;
}

.to-blue-500 {
    --gradient-to: #3b82f6;
}

.to-red-500 {
    --gradient-to: #ef4444;
}

.to-indigo-500 {
    --gradient-to: #6366f1;
}

.to-teal-500 {
    --gradient-to: #14b8a6;
}

/* Additional background colors */
.bg-cyan-500 {
    background-color: #06b6d4;
}

.bg-emerald-500 {
    background-color: #10b981;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-teal-500 {
    background-color: #14b8a6;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-blue-400 {
    background-color: #60a5fa;
}

.bg-cyan-400 {
    background-color: #22d3ee;
}

.bg-pink-400 {
    background-color: #f472b6;
}

.bg-purple-400 {
    background-color: #c084fc;
}

.bg-emerald-400 {
    background-color: #34d399;
}

.bg-green-400 {
    background-color: #4ade80;
}

/* Additional text colors */
.text-cyan-400 {
    color: #22d3ee;
}

.text-pink-400 {
    color: #f472b6;
}

.text-purple-400 {
    color: #c084fc;
}

.text-emerald-400 {
    color: #34d399;
}

.text-green-400 {
    color: #4ade80;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-orange-600 {
    color: #ea580c;
}

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

/* Additional hover colors */
.hover\:text-white:hover {
    color: #ffffff;
}

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

.hover\:bg-gray-200:hover {
    background-color: #e5e7eb;
}

.hover\:bg-blue-500:hover {
    background-color: #3b82f6;
}

.hover\:bg-purple-50:hover {
    background-color: #faf5ff;
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

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

/* Additional border colors */
.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-blue-600 {
    border-color: #2563eb;
}

/* Additional utilities */
.cursor-pointer {
    cursor: pointer;
}

.select-none {
    user-select: none;
}

/* Additional spacing */
.gap-3 {
    gap: 0.75rem;
}

/* Additional responsive */
@media (min-width: 768px) {
    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Additional width */
.w-24 {
    width: 6rem;
}

.w-5 {
    width: 1.25rem;
}

.w-4 {
    width: 1rem;
}

/* Additional height */
.h-5 {
    height: 1.25rem;
}

.h-4 {
    height: 1rem;
}

.h-24 {
    height: 6rem;
}

/* Additional position */
.left-1\/2 {
    left: 50%;
}

/* Additional transform */
.-translate-x-1\/2 {
    transform: translateX(-50%);
}

/* Additional margin */
.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

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

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

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

/* Additional utilities for service cards */
.from-blue-500 {
    --gradient-from: #3b82f6;
}

.to-cyan-500 {
    --gradient-to: #06b6d4;
}

/* Ensure gradients work */
.bg-gradient-to-br {
    --gradient-from: var(--tw-gradient-from);
    --gradient-to: var(--tw-gradient-to, var(--gradient-from));
    background-image: linear-gradient(to bottom right, var(--gradient-from), var(--gradient-to));
}

.from-purple-500 {
    --gradient-from: #a855f7;
}

.to-pink-500 {
    --gradient-to: #ec4899;
}

.from-green-500 {
    --gradient-from: #22c55e;
}

.to-emerald-500 {
    --gradient-to: #10b981;
}

.from-orange-500 {
    --gradient-from: #f97316;
}

.to-red-500 {
    --gradient-to: #ef4444;
}

.from-indigo-500 {
    --gradient-from: #6366f1;
}

.to-blue-500 {
    --gradient-to: #3b82f6;
}

.from-teal-500 {
    --gradient-from: #14b8a6;
}

.to-cyan-500 {
    --gradient-to: #06b6d4;
}

/* تنظیمات فونت فارسی - ایران‌سنس */
body {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* تنظیمات فونت برای عناوین */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* تنظیمات فونت برای متن‌های توپر */
.font-bold {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 700;
}

.font-black {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 900;
}

/* تنظیمات فونت برای دکمه‌ها */
button, .btn, input[type="submit"], input[type="button"] {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 600;
}

/* تنظیمات فونت برای input ها */
input, textarea, select {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
}

/* تنظیمات فونت برای لینک‌ها */
a {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
}

/* بهبود خوانایی برای متن فارسی */
p, span, div, li {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* تنظیمات فونت برای navigation */
nav, .nav {
    font-family: 'Vazirmatn', 'Iranian Sans', 'Tahoma', 'Arial', sans-serif !important;
    font-weight: 500;
}

/* بهبود نمایش اعداد فارسی */
body {
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    font-variant-numeric: normal;
}

/* بهبود فاصله‌گذاری حروف برای فارسی */
* {
    letter-spacing: 0;
    word-spacing: 0.1em;
}
