/* Tailwind CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }
.p-4 { padding: 1rem; }
.p-3 { padding: 0.75rem; }
.p-2 { padding: 0.5rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-3 { margin-left: 0.75rem; }

/* Layout */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-full { top: 100%; }
.right-8 { right: 2rem; }
.bottom-8 { bottom: 2rem; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Display */
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flexbox */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Grid */
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-8 { gap: 2rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-6 { width: 1.5rem; }
.w-5 { width: 1.25rem; }
.w-4 { width: 1rem; }
.w-2 { width: 0.5rem; }
.h-20 { height: 5rem; }
.h-10 { height: 2.5rem; }
.h-6 { height: 1.5rem; }
.h-5 { height: 1.25rem; }
.h-4 { height: 1rem; }
.h-2 { height: 0.5rem; }
.h-1 { height: 0.25rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.max-w-8xl { max-width: 88rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }

/* Typography */
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.capitalize { text-transform: capitalize; }

/* Colors */
.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }

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

/* Background Opacity */
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }

/* Gradient Colors */
.from-cyan-400 { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0)); }
.via-blue-500 { --tw-gradient-stops: var(--tw-gradient-from), #3b82f6, var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.from-emerald-400 { --tw-gradient-from: #34d399; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(52, 211, 153, 0)); }
.via-teal-500 { --tw-gradient-stops: var(--tw-gradient-from), #14b8a6, var(--tw-gradient-to, rgba(20, 184, 166, 0)); }
.to-cyan-600 { --tw-gradient-to: #0891b2; }
.from-orange-400 { --tw-gradient-from: #fb923c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0)); }
.via-red-500 { --tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.to-pink-600 { --tw-gradient-to: #db2777; }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.4), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-slate-900\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(15, 23, 42, 0.6), var(--tw-gradient-to, rgba(15, 23, 42, 0)); }
.via-purple-900\/40 { --tw-gradient-stops: var(--tw-gradient-from), rgba(88, 28, 135, 0.4), var(--tw-gradient-to, rgba(88, 28, 135, 0)); }
.to-transparent { --tw-gradient-to: transparent; }

/* Background Clip */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* Text Colors with Transparency */
.text-transparent { color: transparent; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-cyan-400 { color: #22d3ee; }

/* Borders */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-gray-100 { border-color: #f3f4f6; }
.border-cyan-400\/30 { border-color: rgba(34, 211, 238, 0.3); }

/* Border Radius */
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-md { border-radius: 0.375rem; }

/* Shadows */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

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

/* Transitions */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* Transform */
.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)); }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.-translate-y-4 { --tw-translate-y: -1rem; }
.translate-x-1 { --tw-translate-x: 0.25rem; }
.rotate-90 { --tw-rotate: 90deg; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }

/* Visibility */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* Max Height */
.max-h-0 { max-height: 0px; }
.max-h-96 { max-height: 24rem; }

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

/* Isolation */
.isolate { isolation: isolate; }

/* Group Hover States */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:visible { visibility: visible; }

/* Hover States */
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-cyan-400:hover { color: #22d3ee; }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:border-white\/20:hover { border-color: rgba(255, 255, 255, 0.2); }
.hover\:border-white\/30:hover { border-color: rgba(255, 255, 255, 0.3); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-cyan-500\/25:hover { box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.hover\:-translate-y-4:hover { --tw-translate-y: -1rem; }
.hover\:from-cyan-400:hover { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 211, 238, 0)); }
.hover\:to-blue-500:hover { --tw-gradient-to: #3b82f6; }
.hover\:from-white\/20:hover { --tw-gradient-from: rgba(255, 255, 255, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.hover\:to-white\/10:hover { --tw-gradient-to: rgba(255, 255, 255, 0.1); }

/* Responsive Design */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .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)); }
}

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

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

/* Custom Styles */
#app {
    min-height: 100vh;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

/* Header Styles */
#modern-header {
    background: transparent;
    transition: all 0.5s ease;
}

#modern-header.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Process Card Styles */
.process-card {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.process-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.3);
    z-index: 10;
}

.process-card:hover .glowing-border {
    opacity: 1;
}

.process-card:hover .chevron {
    transform: rotate(90deg);
    color: #22d3ee;
}

.process-card:hover .process-details {
    max-height: 24rem;
    opacity: 1;
}

.process-card:hover .process-summary {
    display: none;
}

.process-card:hover .process-action {
    display: block !important;
}

.process-card:hover .accent-line {
    background-image: linear-gradient(to right, transparent, #22d3ee, transparent);
}

/* Background Canvas */
#background-canvas {
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 70%, #000000 100%);
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Gradient Process Card Backgrounds */
.bg-gradient-to-br.from-cyan-500\/20.to-blue-600\/20 {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
}

.bg-gradient-to-br.from-purple-500\/20.to-pink-600\/20 {
    background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.2), rgba(219, 39, 119, 0.2));
}

.bg-gradient-to-br.from-indigo-500\/20.to-purple-600\/20 {
    background: linear-gradient(to bottom right, rgba(99, 102, 241, 0.2), rgba(147, 51, 234, 0.2));
}

.bg-gradient-to-br.from-green-500\/20.to-emerald-600\/20 {
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.2), rgba(5, 150, 105, 0.2));
}

.bg-gradient-to-br.from-yellow-500\/20.to-orange-600\/20 {
    background: linear-gradient(to bottom right, rgba(234, 179, 8, 0.2), rgba(234, 88, 12, 0.2));
}

.bg-gradient-to-br.from-pink-500\/20.to-red-600\/20 {
    background: linear-gradient(to bottom right, rgba(236, 72, 153, 0.2), rgba(220, 38, 38, 0.2));
}

.bg-gradient-to-br.from-amber-500\/20.to-orange-600\/20 {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.2));
}

.bg-gradient-to-br.from-teal-500\/20.to-green-600\/20 {
    background: linear-gradient(to bottom right, rgba(20, 184, 166, 0.2), rgba(22, 163, 74, 0.2));
}

.bg-gradient-to-br.from-red-500\/20.to-rose-600\/20 {
    background: linear-gradient(to bottom right, rgba(239, 68, 68, 0.2), rgba(225, 29, 72, 0.2));
}

/* Border Colors */
.border-cyan-500\/30 { border-color: rgba(6, 182, 212, 0.3); }
.border-purple-500\/30 { border-color: rgba(168, 85, 247, 0.3); }
.border-indigo-500\/30 { border-color: rgba(99, 102, 241, 0.3); }
.border-green-500\/30 { border-color: rgba(34, 197, 94, 0.3); }
.border-yellow-500\/30 { border-color: rgba(234, 179, 8, 0.3); }
.border-pink-500\/30 { border-color: rgba(236, 72, 153, 0.3); }
.border-amber-500\/30 { border-color: rgba(245, 158, 11, 0.3); }
.border-teal-500\/30 { border-color: rgba(20, 184, 166, 0.3); }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }

/* Accent Line Colors */
.via-cyan-400\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(34, 211, 238, 0.5), var(--tw-gradient-to, rgba(34, 211, 238, 0)); }

/* Group Item Hover Effects */
.group\/item:hover .group-hover\/item\:text-cyan-400 { color: #22d3ee; }
.group\/item:hover .group-hover\/item\:bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.group\/item:hover .group-hover\/item\:translate-x-1 { --tw-translate-x: 0.25rem; }

/* Button Styles */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Scroll to Top Button */
#scroll-to-top {
    background: linear-gradient(to right, #06b6d4, #2563eb);
}

#scroll-to-top:hover {
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25);
}

/* Mobile Menu */
#mobile-menu {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(24px);
}

/* Profile Dropdown */
#profile-dropdown {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(24px);
}

.yatra-one-regular {
  font-family: "Yatra One", system-ui;
  font-weight: 400;
  font-style: normal;
}

.quicksand-uniquifier {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight; /* <--- This is a placeholder for a number like 400 or 700 */
  font-style: normal;
}

h2,span {
  font-family: 'Yatra One', system-uni;
}

*{
    font-family: 'Quicksand', sans-serif;
}
