/*! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}/* 
Reset and base styles */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button, select {
  text-transform: none;
}

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Tailwind utilities */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}/*
 Display utilities */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Position utilities */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* Top, right, bottom, left */
.top-0 { top: 0px; }
.right-0 { right: 0px; }
.bottom-0 { bottom: 0px; }
.left-0 { left: 0px; }
.top-20 { top: 5rem; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Flex utilities */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid utilities */
.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)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Gap utilities */
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Space utilities */
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.space-x-8 > :not([hidden]) ~ :not([hidden]) { margin-left: 2rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }

/* Width utilities */
.w-full { width: 100%; }
.w-14 { width: 3.5rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }

/* Height utilities */
.h-14 { height: 3.5rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }

/* Min-height utilities */
.min-h-screen { min-height: 100vh; }
.min-h-\[90vh\] { min-height: 90vh; }/* 
Max-width utilities */
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-xs { max-width: 20rem; }

/* Margin utilities */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-10 { margin-top: 2.5rem; }

/* Padding utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.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-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-20 { padding-top: 5rem; }

/* Font family */
.font-sans { font-family: Inter, ui-sans-serif, system-ui, sans-serif; }

/* Font size */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.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; }
.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; }

/* Responsive font sizes */
.text-\[clamp\(2\.5rem\,5vw\,4rem\)\] { font-size: clamp(2.5rem, 5vw, 4rem); }
.text-\[clamp\(1\.8rem\,3vw\,2\.5rem\)\] { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.text-\[clamp\(1\.1rem\,2vw\,1\.3rem\)\] { font-size: clamp(1.1rem, 2vw, 1.3rem); }/* F
ont weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Line height */
.leading-tight { line-height: 1.25; }

/* Text alignment */
.text-center { text-align: center; }

/* Text colors */
.text-white { color: rgb(255 255 255); }
.text-gray-400 { color: rgb(156 163 175); }
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.text-blue-500 { color: rgb(59 130 246); }
.text-blue-800 { color: rgb(30 64 175); }
.text-green-500 { color: rgb(34 197 94); }
.text-green-600 { color: rgb(22 163 74); }
.text-green-700 { color: rgb(21 128 61); }
.text-red-500 { color: rgb(239 68 68); }
.text-red-600 { color: rgb(220 38 38); }
.text-red-700 { color: rgb(185 28 28); }
.text-yellow-600 { color: rgb(217 119 6); }
.text-yellow-700 { color: rgb(180 83 9); }

/* Custom colors */
.text-primary { color: #3662FF; }
.text-secondary { color: #FF7D00; }
.text-accent { color: #722ED1; }
.text-dark { color: #111827; }

/* Text opacity */
.text-white\/80 { color: rgb(255 255 255 / 0.8); }
.text-white\/90 { color: rgb(255 255 255 / 0.9); }

/* Background colors */
.bg-white { background-color: rgb(255 255 255); }
.bg-gray-50 { background-color: rgb(249 250 251); }
.bg-blue-50 { background-color: rgb(239 246 255); }
.bg-blue-100 { background-color: rgb(219 234 254); }
.bg-green-50 { background-color: rgb(240 253 244); }
.bg-green-100 { background-color: rgb(220 252 231); }
.bg-purple-50 { background-color: rgb(250 245 255); }
.bg-purple-100 { background-color: rgb(243 232 255); }
.bg-red-50 { background-color: rgb(254 242 242); }
.bg-yellow-50 { background-color: rgb(254 252 232); }
.bg-orange-100 { background-color: rgb(255 237 213); }
.bg-indigo-100 { background-color: rgb(224 231 255); }

/* Custom background colors */
.bg-primary { background-color: #3662FF; }
.bg-secondary { background-color: #FF7D00; }
.bg-accent { background-color: #722ED1; }
.bg-dark { background-color: #111827; }
.bg-light { background-color: #F9FAFB; }

/* Background opacity */
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-primary\/10 { background-color: rgb(54 98 255 / 0.1); }
.bg-secondary\/10 { background-color: rgb(255 125 0 / 0.1); }
.bg-accent\/10 { background-color: rgb(114 46 209 / 0.1); }/* Gradient
s */
.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)); }
.from-primary { --tw-gradient-from: #3662FF; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 98 255 / 0)); }
.from-secondary { --tw-gradient-from: #FF7D00; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 125 0 / 0)); }
.from-accent { --tw-gradient-from: #722ED1; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(114 46 209 / 0)); }
.from-blue-50 { --tw-gradient-from: rgb(239 246 255); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(239 246 255 / 0)); }
.from-purple-50 { --tw-gradient-from: rgb(250 245 255); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 245 255 / 0)); }
.from-primary\/90 { --tw-gradient-from: rgb(54 98 255 / 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 98 255 / 0)); }
.to-accent { --tw-gradient-to: #722ED1; }
.to-secondary { --tw-gradient-to: #FF7D00; }
.to-indigo-100 { --tw-gradient-to: rgb(224 231 255); }

/* Border */
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-primary { border-color: #3662FF; }
.border-secondary { border-color: #FF7D00; }
.border-purple-100 { border-color: rgb(243 232 255); }
.border-green-100 { border-color: rgb(220 252 231); }
.border-red-500 { border-color: rgb(239 68 68); }
.border-yellow-500 { border-color: rgb(234 179 8); }
.border-white\/10 { border-color: rgb(255 255 255 / 0.1); }
.border-gray-800 { border-color: rgb(31 41 55); }

/* Border radius */
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Blur */
.blur-3xl { filter: blur(64px); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Object fit */
.object-cover { object-fit: cover; }/
* Transitions */
.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-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover states */
.hover\:bg-primary\/90:hover { background-color: rgb(54 98 255 / 0.9); }
.hover\:bg-secondary\/90:hover { background-color: rgb(255 125 0 / 0.9); }
.hover\:bg-gray-50:hover { background-color: rgb(249 250 251); }
.hover\:text-primary:hover { color: #3662FF; }
.hover\:text-primary\/80:hover { color: rgb(54 98 255 / 0.8); }
.hover\:text-white:hover { color: rgb(255 255 255); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Focus states */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:w-1\/2 { width: 50%; }
  .md\:flex-row { flex-direction: row; }
  .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\:col-span-1 { grid-column: span 1 / span 1; }
  .md\:mb-0 { margin-bottom: 0px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
}

/* Order utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }

/* Custom utilities */
.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bg-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}/*
 Wave background effect */
.wave-bg {
  position: relative;
  overflow: hidden;
}

.wave-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="1" d="M0,192L48,181.3C96,171,192,149,288,154.7C384,160,480,192,576,192C672,192,768,160,864,149.3C960,139,1056,149,1152,170.7C1248,192,1344,224,1392,240L1440,256L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
}

/* Global styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

/* Font Awesome icon fix */
.fa {
  font-family: FontAwesome !important;
}

/* Additional utilities that might be missing */
.inset-0 { 
  top: 0px; 
  right: 0px; 
  bottom: 0px; 
  left: 0px; 
}

.bg-gradient-to-t { 
  background-image: linear-gradient(to top, var(--tw-gradient-stops)); 
}

.from-black\/30 { 
  --tw-gradient-from: rgb(0 0 0 / 0.3); 
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(0 0 0 / 0)); 
}

.to-transparent { 
  --tw-gradient-to: transparent; 
}

/* Ensure all custom colors work properly */
:root {
  --color-primary: #3662FF;
  --color-secondary: #FF7D00;
  --color-accent: #722ED1;
  --color-dark: #111827;
  --color-light: #F9FAFB;
}/
* Additional missing utilities */
.block { display: block; }
.inline-block { display: inline-block; }

/* More width utilities */
.w-1\/2 { width: 50%; }

/* More grid utilities */
.col-span-1 { grid-column: span 1 / span 1; }

/* More margin utilities */
.mb-1 { margin-bottom: 0.25rem; }

/* More text colors */
.text-gray-300 { color: rgb(209 213 219); }

/* More background colors */
.bg-gray-800 { color: rgb(31 41 55); }

/* Ensure all icon colors work */
.text-blue-500 { color: rgb(59 130 246); }
.text-gray-700 { color: rgb(55 65 81); }

/* Make sure all hover states work */
.hover\:bg-primary\/90:hover { background-color: rgba(54, 98, 255, 0.9); }
.hover\:bg-secondary\/90:hover { background-color: rgba(255, 125, 0, 0.9); }

/* Ensure responsive classes work */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
}

/* Fix any missing flex utilities */
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Additional spacing */
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }

/* Ensure all font weights are available */
.font-extralight { font-weight: 200; }
.font-black { font-weight: 900; }

/* Additional border utilities */
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }

/* Additional padding utilities */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }

/* Additional margin utilities */
.m-0 { margin: 0px; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 1rem; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }

/* User select utilities */
.select-none { user-select: none; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Additional transform utilities */
.transform { transform: var(--tw-transform); }
.scale-105 { transform: scale(1.05); }
.rotate-180 { transform: rotate(180deg); }