/* Minimal Tailwind-like utilities for RTE Maharashtra */
/* This replaces the 113KB Tailwind CDN with only what we need */

/* Reset & Base */
*,
::before,
::after {
    box-sizing: border-box;
    border: 0 solid #e5e7eb
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif
}

body {
    margin: 0;
    line-height: inherit
}

/* Layout */
.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.inline {
    display: inline
}

/* Flexbox & Grid */
.items-center {
    align-items: center
}

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

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

.justify-center {
    justify-content: center
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

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

.shrink-0 {
    flex-shrink: 0
}

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

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

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

/* Spacing */
.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-8 {
    padding: 2rem
}

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

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

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

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

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

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

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

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

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

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.m-0 {
    margin: 0
}

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

.mt-2 {
    margin-top: .5rem
}

.mt-3 {
    margin-top: .75rem
}

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

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

.mb-1 {
    margin-bottom: .25rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-3 {
    margin-bottom: .75rem
}

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

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

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

.ml-1 {
    margin-left: .25rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-auto {
    margin-left: auto
}

.mr-1 {
    margin-right: .25rem
}

.mr-3 {
    margin-right: .75rem
}

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

.-mx-5 {
    margin-left: -1.25rem;
    margin-right: -1.25rem
}

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

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

.-mr-20 {
    margin-right: -5rem
}

.-mt-20 {
    margin-top: -5rem
}

.space-y-1>:not([hidden])~:not([hidden]) {
    margin-top: .25rem
}

.space-y-2>:not([hidden])~:not([hidden]) {
    margin-top: .5rem
}

.space-y-3>:not([hidden])~:not([hidden]) {
    margin-top: .75rem
}

.space-y-4>:not([hidden])~:not([hidden]) {
    margin-top: 1rem
}

.space-y-6>:not([hidden])~:not([hidden]) {
    margin-top: 1.5rem
}

.space-y-8>:not([hidden])~:not([hidden]) {
    margin-top: 2rem
}

/* Sizing */
.w-6 {
    width: 1.5rem
}

.w-8 {
    width: 2rem
}

.w-10 {
    width: 2.5rem
}

.w-14 {
    width: 3.5rem
}

.w-24 {
    width: 6rem
}

.w-64 {
    width: 16rem
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.h-6 {
    height: 1.5rem
}

.h-8 {
    height: 2rem
}

.h-10 {
    height: 2.5rem
}

.h-12 {
    height: 3rem
}

.h-14 {
    height: 3.5rem
}

.h-64 {
    height: 16rem
}

.min-h-screen {
    min-height: 100vh
}

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

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

.absolute {
    position: absolute
}

.sticky {
    position: sticky
}

.top-0 {
    top: 0
}

.right-0 {
    right: 0
}

.left-0 {
    left: 0
}

.-left-3 {
    left: -.75rem
}

.z-10 {
    z-index: 10
}

.z-50 {
    z-index: 50
}

/* Typography */
.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

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

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

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

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

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

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

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.font-bold {
    font-weight: 700
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.uppercase {
    text-transform: uppercase
}

.leading-tight {
    line-height: 1.25
}

.leading-relaxed {
    line-height: 1.625
}

.leading-snug {
    line-height: 1.375
}

.tracking-wide {
    letter-spacing: .025em
}

.italic {
    font-style: italic
}

.whitespace-nowrap {
    white-space: nowrap
}

/* Colors */
.text-white {
    color: #fff
}

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

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

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

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

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

.text-gray-800 {
    color: #1f2937
}

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

.text-blue-700 {
    color: #1d4ed8
}

.text-blue-800 {
    color: #1e40af
}

.text-blue-900 {
    color: #1e3a8a
}

.text-blue-100 {
    color: #dbeafe
}

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

.text-orange-400 {
    color: #fb923c
}

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

.text-orange-700 {
    color: #c2410c
}

.text-orange-800 {
    color: #9a3412
}

.text-orange-900 {
    color: #7c2d12
}

.text-yellow-700 {
    color: #a16207
}

.text-yellow-800 {
    color: #854d0e
}

.text-yellow-900 {
    color: #713f12
}

.text-red-700 {
    color: #b91c1c
}

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

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

.text-pink-600 {
    color: #db2777
}

.text-pink-700 {
    color: #be185d
}

.text-indigo-600 {
    color: #4f46e5
}

/* Backgrounds */
.bg-white {
    background-color: #fff
}

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

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

.bg-gray-500 {
    background-color: #6b7280
}

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

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

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

.bg-blue-100 {
    background-color: #dbeafe
}

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

.bg-blue-800 {
    background-color: #1e40af
}

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

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

.bg-orange-100 {
    background-color: #ffedd5
}

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

.bg-orange-600 {
    background-color: #ea580c
}

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

.bg-yellow-100 {
    background-color: #fef9c3
}

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

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

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

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

.bg-pink-50 {
    background-color: #fdf2f8
}

.bg-pink-100 {
    background-color: #fce7f3
}

.bg-red-600 {
    background-color: #dc2626
}

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

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

.from-blue-900 {
    --tw-gradient-from: #1e3a8a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 138, 0))
}

.to-blue-800 {
    --tw-gradient-to: #1e40af
}

.from-orange-50 {
    --tw-gradient-from: #fff7ed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 247, 237, 0))
}

.from-blue-50 {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 246, 255, 0))
}

.from-purple-50 {
    --tw-gradient-from: #faf5ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 245, 255, 0))
}

.from-green-50 {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 253, 244, 0))
}

/* Borders */
.border {
    border-width: 1px
}

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

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

.border-t {
    border-top-width: 1px
}

.border-t-4 {
    border-top-width: 4px
}

.border-b {
    border-bottom-width: 1px
}

.border-l-2 {
    border-left-width: 2px
}

.border-l-4 {
    border-left-width: 4px
}

.border-gray-100 {
    border-color: #f3f4f6
}

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

.border-gray-800 {
    border-color: #1f2937
}

.border-blue-100 {
    border-color: #dbeafe
}

.border-blue-500 {
    border-color: #3b82f6
}

.border-orange-100 {
    border-color: #ffedd5
}

.border-orange-200 {
    border-color: #fed7aa
}

.border-orange-300 {
    border-color: #fdba74
}

.border-orange-500 {
    border-color: #f97316
}

.border-blue-300 {
    border-color: #93c5fd
}

.border-purple-100 {
    border-color: #f3e8ff
}

.border-purple-300 {
    border-color: #d8b4fe
}

.border-green-100 {
    border-color: #dcfce7
}

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

.border-yellow-300 {
    border-color: #fde047
}

.border-pink-200 {
    border-color: #fbcfe8
}

.border-pink-500 {
    border-color: #ec4899
}

.border-white {
    border-color: #fff
}

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

.rounded {
    border-radius: .25rem
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-xl {
    border-radius: .75rem
}

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

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

.rounded-bl-full {
    border-bottom-left-radius: 9999px
}

/* Effects */
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1)
}

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

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1)
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1)
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

.drop-shadow {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .1))
}

.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgba(0, 0, 0, .07))
}

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

.opacity-5 {
    opacity: .05
}

/* Transitions */
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

/* Transforms */
.transform {
    transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1))
}

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

/* Cursor */
.cursor-pointer {
    cursor: pointer
}

/* List */
.list-none {
    list-style-type: none
}

.list-disc {
    list-style-type: disc
}

.list-decimal {
    list-style-type: decimal
}

/* Misc */
.animate-pulse {
    animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

/* Hover States */
.hover\:bg-blue-50:hover {
    background-color: #eff6ff
}

.hover\:bg-blue-100:hover {
    background-color: #dbeafe
}

.hover\:bg-orange-100:hover {
    background-color: #ffedd5
}

.hover\:bg-orange-600:hover {
    background-color: #ea580c
}

.hover\:bg-orange-700:hover {
    background-color: #c2410c
}

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

.hover\:text-blue-700:hover {
    color: #1d4ed8
}

.hover\:text-blue-900:hover {
    color: #1e3a8a
}

.hover\:text-orange-400:hover {
    color: #fb923c
}

.hover\:text-pink-900:hover {
    color: #831843
}

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

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

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1)
}

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

.hover\:translate-x-1:hover {
    transform: translateX(.25rem)
}

/* Group Hover */
.group:hover .group-hover\:bg-blue-100 {
    background-color: #dbeafe
}

.group:hover .group-hover\:bg-orange-100 {
    background-color: #ffedd5
}

.group:hover .group-hover\:bg-green-100 {
    background-color: #dcfce7
}

.group:hover .group-hover\:bg-pink-600 {
    background-color: #db2777
}

.group:hover .group-hover\:text-white {
    color: #fff
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(.25rem)
}

/* Focus */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

/* Responsive - Small */
@media(min-width:640px) {
    .sm\:text-sm {
        font-size: .875rem;
        line-height: 1.25rem
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem
    }

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

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

    .sm\:block {
        display: block
    }

    .sm\:p-5 {
        padding: 1.25rem
    }

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

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

    .sm\:-mx-5 {
        margin-left: -1.25rem;
        margin-right: -1.25rem
    }
}

/* Responsive - Medium */
@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))
    }
}

/* Responsive - Large */
@media(min-width:1024px) {
    .lg\:hidden {
        display: none
    }

    .lg\:flex {
        display: flex
    }

    .lg\:block {
        display: block
    }

    .lg\:col-span-4 {
        grid-column: span 4/span 4
    }

    .lg\:col-span-8 {
        grid-column: span 8/span 8
    }

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

/* Custom utilities for this project */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

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

.bg-white\/10 {
    background-color: rgba(255, 255, 255, .1)
}

.backdrop-blur-md {
    backdrop-filter: blur(12px)
}

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

.pb-1 {
    padding-bottom: .25rem
}

.pt-2 {
    padding-top: .5rem
}

.pl-5 {
    padding-left: 1.25rem
}

.pl-8 {
    padding-left: 2rem
}

.pb-6 {
    padding-bottom: 1.5rem
}

.pb-2 {
    padding-bottom: .5rem
}