/*!**********************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./styles/shine-effects.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************/
/* ========================================
   ANUBAVAM SHINE EFFECTS - EXACT REFERENCE MATCH
   Reference: Document/anubavam_sections_embedded.html
   ======================================== */

/* CSS Variables for Consistency */
:root {
  --anubavam-primary: #2A2D9F;
  --anubavam-secondary: #5356D2;
  --anubavam-tertiary: #9092E2;
  --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
  --gradient-button: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  --gradient-button-hover: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   1. TEXT SHINE EFFECT (Text Gradient Animation)
   ======================================== */

@keyframes textShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.text-gradient.shine {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af) !important;
  background-size: 200% 100% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  animation: textShine 2s ease-in-out !important;
}

/* Utility class for direct usage */
.shine-text {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2s ease-in-out;
}

/* Direct CSS utility class for working shine effect */
.text-shine-effect {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2s ease-in-out;
}

/* ========================================
   1.5. TEXT SWEEP SHINE EFFECT (Card-like sweep on text)
   ======================================== */

.text-gradient.text-sweep-shine {
  position: relative;
  overflow: hidden;
}

.text-gradient.text-sweep-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    transparent 80%
  );
  transform: skewX(-25deg);
  z-index: 10;
  pointer-events: none;
  animation: textSweepShine 0.8s ease-out;
}

@keyframes textSweepShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Text sweep shine with focus trigger (no hover) */
.text-gradient.text-sweep-focus {
  position: relative;
  overflow: hidden;
}

.text-gradient.text-sweep-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.9) 50%,
    rgba(255, 255, 255, 0.6) 70%,
    transparent 80%
  );
  transform: skewX(-25deg);
  z-index: 10;
  pointer-events: none;
  transition: left 1.4s ease-out;
}

.text-gradient.text-sweep-focus.active::before {
  left: 100%;
}

/* ========================================
   2. CARD SHINE EFFECT (Element Sweep Animation)
   ======================================== */

.shine-effect {
  position: relative;
  overflow: hidden;
  background: white;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.5) 30%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0.5) 70%,
    transparent 80%
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease-out;
  z-index: 10;
  pointer-events: none;
}

.shine-effect:hover::before {
  left: 100%;
}

/* Periodic Auto-Shine for specific cards */
.periodic-shine::before {
  animation: autoShine 4s ease-in-out infinite;
}

@keyframes autoShine {
  0%, 85%, 100% { 
    left: -100%;
  }
  15%, 75% { 
    left: 100%;
  }
}

/* ========================================
   3. BORDER TRAVEL EFFECT (Showcase Card Border Animation)
   ======================================== */

.showcase-card {
  background: white;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 2px solid #f3f4f6;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(42, 45, 159, 0.8),
    rgba(83, 86, 210, 1),
    rgba(144, 146, 226, 1),
    rgba(83, 86, 210, 1),
    rgba(42, 45, 159, 0.8),
    transparent
  );
  animation: borderTravel 12s ease-in-out infinite;
}

@keyframes borderTravel {
  0% { top: 0; left: -100%; width: 100%; height: 2px; }
  25% { top: 0; left: 100%; width: 100%; height: 2px; }
  25.01% { top: 0; left: calc(100% - 2px); width: 2px; height: 100%; }
  50% { top: 100%; left: calc(100% - 2px); width: 2px; height: 100%; }
  50.01% { top: calc(100% - 2px); left: 100%; width: 100%; height: 2px; }
  75% { top: calc(100% - 2px); left: -100%; width: 100%; height: 2px; }
  75.01% { top: 100%; left: 0; width: 2px; height: 100%; }
  100% { top: -100%; left: 0; width: 2px; height: 100%; }
}

/* ========================================
   4. SUPPORT CLASSES FOR POSITIONING AND LAYERING
   ======================================== */

.icon-container {
  position: relative;
  z-index: 2;
}

.card-content {
  position: relative;
  z-index: 2;
}

.solution-card {
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(42, 45, 159, 0.15),
    0 10px 20px rgba(42, 45, 159, 0.1);
}

/* ========================================
   5. BRAND UTILITY CLASSES
   ======================================== */

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

.text-blue-600 { 
  color: var(--anubavam-primary) !important; 
}

.bg-brand-light { 
  background: linear-gradient(135deg, #f8fafc, #f1f5f9); 
}

/* ========================================
   6. TAILWIND INTEGRATION UTILITIES
   ======================================== */

/* For use with Tailwind's arbitrary value syntax */
.animate-text-shine {
  animation: textShine 2s ease-in-out;
}

.animate-text-shine-infinite {
  animation: textShine 2s ease-in-out infinite;
}

.animate-auto-shine {
  animation: autoShine 4s ease-in-out infinite;
}

.animate-border-travel {
  animation: borderTravel 12s ease-in-out infinite;
}

/* Background size utilities for text gradients */
.bg-shine-size {
  background-size: 200% 100%;
}

/* ========================================
   7. RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  .shine-effect::before {
    /* Slightly reduce skew on mobile for better visibility */
    transform: skewX(-20deg);
  }
}

/* ========================================
   8. BROWSER COMPATIBILITY
   ======================================== */

/* Firefox support for background-clip: text */
@-moz-document url-prefix() {
  .text-gradient,
  .text-gradient.shine,
  .shine-text {
    background-clip: text;
    -moz-background-clip: text;
  }
}

/* Safari additional support */
@supports (-webkit-background-clip: text) {
  .text-gradient,
  .text-gradient.shine,
  .shine-text {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./styles/globals.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.17 | 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 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif; /* 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 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {

  .\!container {
    max-width: 640px !important;
  }

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .\!container {
    max-width: 768px !important;
  }

  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {

  .\!container {
    max-width: 1024px !important;
  }

  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {

  .\!container {
    max-width: 1280px !important;
  }

  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {

  .\!container {
    max-width: 1536px !important;
  }

  .container {
    max-width: 1536px;
  }
}
.prose {
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.2222222em;
  line-height: 1.4545455;
  margin-top: 1.0909091em;
  margin-bottom: 1.0909091em;
}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
  padding-inline-start: 1em;
}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  border-radius: 0.3125rem;
  padding-top: 0.2222222em;
  padding-inline-end: 0.4444444em;
  padding-bottom: 0.2222222em;
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8666667em;
}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.875em;
}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.75;
  margin-top: 2em;
  margin-bottom: 2em;
  border-radius: 0.375rem;
  padding-top: 1em;
  padding-inline-end: 1.5em;
  padding-bottom: 1em;
  padding-inline-start: 1.5em;
}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0.4444444em;
}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0.6666667em;
  padding-inline-start: 1.5555556em;
}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-top: 0.75em;
  padding-inline-end: 0.75em;
  padding-bottom: 0.75em;
  padding-inline-start: 0.75em;
}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-start: 0;
}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  padding-inline-end: 0;
}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  font-size: 0.8888889em;
  line-height: 1.5;
  margin-top: 1em;
}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-top: 0;
}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
  margin-bottom: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-20 {
  bottom: 5rem;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-1\/2 {
  left: 50%;
}
.left-10 {
  left: 2.5rem;
}
.left-2 {
  left: 0.5rem;
}
.left-4 {
  left: 1rem;
}
.left-8 {
  left: 2rem;
}
.right-0 {
  right: 0px;
}
.right-1\/2 {
  right: 50%;
}
.right-10 {
  right: 2.5rem;
}
.right-2 {
  right: 0.5rem;
}
.right-4 {
  right: 1rem;
}
.right-8 {
  right: 2rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-10 {
  top: 2.5rem;
}
.top-2 {
  top: 0.5rem;
}
.top-20 {
  top: 5rem;
}
.top-24 {
  top: 6rem;
}
.top-3 {
  top: 0.75rem;
}
.top-full {
  top: 100%;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-40 {
  z-index: 40;
}
.z-50 {
  z-index: 50;
}
.z-\[1\] {
  z-index: 1;
}
.col-span-12 {
  grid-column: span 12 / span 12;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.col-span-5 {
  grid-column: span 5 / span 5;
}
.col-span-7 {
  grid-column: span 7 / span 7;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-10 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.-ml-\[50vw\] {
  margin-left: -50vw;
}
.-mr-\[50vw\] {
  margin-right: -50vw;
}
.-mt-8 {
  margin-top: -2rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.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;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-auto {
  margin-right: auto;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.h-1 {
  height: 0.25rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-2\.5 {
  height: 0.625rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-80 {
  height: 20rem;
}
.h-9 {
  height: 2.25rem;
}
.h-96 {
  height: 24rem;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-7 {
  max-height: 1.75rem;
}
.max-h-8 {
  max-height: 2rem;
}
.max-h-full {
  max-height: 100%;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-40 {
  min-height: 10rem;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1 {
  width: 0.25rem;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\.5 {
  width: 0.625rem;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-80 {
  width: 20rem;
}
.w-9 {
  width: 2.25rem;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[360px\] {
  width: 360px;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-\[80px\] {
  min-width: 80px;
}
.max-w-2xl {
  max-width: 42rem;
}
.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-7xl {
  max-width: 80rem;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xl {
  max-width: 36rem;
}
.max-w-xs {
  max-width: 20rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.grow {
  flex-grow: 1;
}
.-translate-y-1\/2 {
  --tw-translate-y: -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));
}
.-translate-y-2 {
  --tw-translate-y: -0.5rem;
  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));
}
.translate-y-5 {
  --tw-translate-y: 1.25rem;
  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));
}
.rotate-0 {
  --tw-rotate: 0deg;
  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));
}
.rotate-180 {
  --tw-rotate: 180deg;
  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-95 {
  --tw-scale-x: .95;
  --tw-scale-y: .95;
  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));
}
.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));
}
.animate-\[fadeInScale_0\.6s_ease_forwards\] {
  animation: fadeInScale 0.6s ease forwards;
}
.animate-\[slideInUp_0\.6s_ease_forwards\] {
  animation: slideInUp 0.6s ease forwards;
}
@keyframes bounce {

  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
@keyframes textShine {

  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}
.animate-text-shine {
  animation: textShine 2s ease-in-out;
}
.cursor-grab {
  cursor: grab;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize {
  resize: both;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12 {
  grid-template-columns: repeat(12, 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));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[1px\] {
  border-radius: 1px;
}
.rounded-\[2px\] {
  border-radius: 2px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-xl {
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-r-lg {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.rounded-t-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-4 {
  border-width: 4px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-0 {
  border-top-width: 0px;
}
.border-dashed {
  border-style: dashed;
}
.border-none {
  border-style: none;
}
.border-\[\#2A2D9F\] {
  --tw-border-opacity: 1;
  border-color: rgb(42 45 159 / var(--tw-border-opacity, 1));
}
.border-\[\#5356D2\] {
  --tw-border-opacity: 1;
  border-color: rgb(83 86 210 / var(--tw-border-opacity, 1));
}
.border-\[\#667eea\] {
  --tw-border-opacity: 1;
  border-color: rgb(102 126 234 / var(--tw-border-opacity, 1));
}
.border-\[\#9092E2\] {
  --tw-border-opacity: 1;
  border-color: rgb(144 146 226 / var(--tw-border-opacity, 1));
}
.border-\[\#ec4899\] {
  --tw-border-opacity: 1;
  border-color: rgb(236 72 153 / var(--tw-border-opacity, 1));
}
.border-blue-100 {
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity, 1));
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
}
.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
}
.border-blue-800 {
  --tw-border-opacity: 1;
  border-color: rgb(30 64 175 / var(--tw-border-opacity, 1));
}
.border-cyan-300 {
  --tw-border-opacity: 1;
  border-color: rgb(103 232 249 / var(--tw-border-opacity, 1));
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-200\/40 {
  border-color: rgb(229 231 235 / 0.4);
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-500 {
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity, 1));
}
.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
}
.border-green-500 {
  --tw-border-opacity: 1;
  border-color: rgb(34 197 94 / var(--tw-border-opacity, 1));
}
.border-indigo-100 {
  --tw-border-opacity: 1;
  border-color: rgb(224 231 255 / var(--tw-border-opacity, 1));
}
.border-indigo-200 {
  --tw-border-opacity: 1;
  border-color: rgb(199 210 254 / var(--tw-border-opacity, 1));
}
.border-indigo-600 {
  --tw-border-opacity: 1;
  border-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
}
.border-orange-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 186 116 / var(--tw-border-opacity, 1));
}
.border-orange-400 {
  --tw-border-opacity: 1;
  border-color: rgb(251 146 60 / var(--tw-border-opacity, 1));
}
.border-orange-500 {
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity, 1));
}
.border-purple-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 232 255 / var(--tw-border-opacity, 1));
}
.border-purple-200 {
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
}
.border-purple-300 {
  --tw-border-opacity: 1;
  border-color: rgb(216 180 254 / var(--tw-border-opacity, 1));
}
.border-purple-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
}
.border-red-100 {
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
}
.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity, 1));
}
.border-red-500 {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-red-800 {
  --tw-border-opacity: 1;
  border-color: rgb(153 27 27 / var(--tw-border-opacity, 1));
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity, 1));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-white\/30 {
  border-color: rgb(255 255 255 / 0.3);
}
.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
}
.border-yellow-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
}
.border-yellow-400 {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
}
.border-b-\[rgba\(42\2c 45\2c 159\2c 0\.10\)\] {
  border-bottom-color: rgba(42,45,159,0.10);
}
.border-r-transparent {
  border-right-color: transparent;
}
.border-t-transparent {
  border-top-color: transparent;
}
.bg-\[\#2A2D9F\]\/60 {
  background-color: rgb(42 45 159 / 0.6);
}
.bg-\[\#3C3B6E\] {
  --tw-bg-opacity: 1;
  background-color: rgb(60 59 110 / var(--tw-bg-opacity, 1));
}
.bg-\[\#5356D2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(83 86 210 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F7F9FF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(247 249 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#F9FAFE\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 254 / var(--tw-bg-opacity, 1));
}
.bg-\[rgb\(232\2c 232\2c 255\)\] {
  --tw-bg-opacity: 1;
  background-color: rgb(232 232 255 / var(--tw-bg-opacity, 1));
}
.bg-\[rgb\(244\2c 244\2c 255\)\] {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 255 / var(--tw-bg-opacity, 1));
}
.bg-anubavam-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(42 45 159 / var(--tw-bg-opacity, 1));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity, 1));
}
.bg-blue-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}
.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}
.bg-blue-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.bg-indigo-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}
.bg-indigo-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
}
.bg-orange-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(251 146 60 / var(--tw-bg-opacity, 1));
}
.bg-orange-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
}
.bg-purple-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
}
.bg-purple-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
}
.bg-purple-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
}
.bg-purple-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(126 34 206 / var(--tw-bg-opacity, 1));
}
.bg-red-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/90 {
  background-color: rgb(255 255 255 / 0.9);
}
.bg-white\/95 {
  background-color: rgb(255 255 255 / 0.95);
}
.bg-yellow-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}
.bg-yellow-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
}
.bg-\[linear-gradient\(188deg\2c \#f8fafc\2c \#f1f8ff\)\] {
  background-image: linear-gradient(188deg,#f8fafc,#f1f8ff);
}
.bg-brand-light {
  background-image: linear-gradient(135deg, #f8fafc, #f1f5f9);
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.bg-shine-gradient {
  background-image: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
}
.from-\[\#2A2D9F\] {
  --tw-gradient-from: #2A2D9F var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(42 45 159 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#3b82f6\] {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#5356D2\] {
  --tw-gradient-from: #5356D2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(83 86 210 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#667eea\] {
  --tw-gradient-from: #667eea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(102 126 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#9092E2\] {
  --tw-gradient-from: #9092E2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(144 146 226 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#E9F0FF\] {
  --tw-gradient-from: #E9F0FF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(233 240 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-\[\#EFF6FF\] {
  --tw-gradient-from: #EFF6FF var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-500 {
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-50 {
  --tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500 {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600 {
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-600 {
  --tw-gradient-from: #0891b2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(8 145 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-50 {
  --tw-gradient-from: #ecfdf5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 253 245 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500 {
  --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-50 {
  --tw-gradient-from: #f9fafb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 250 251 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-500 {
  --tw-gradient-from: #6b7280 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(107 114 128 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500 {
  --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-50 {
  --tw-gradient-from: #eef2ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(238 242 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-600 {
  --tw-gradient-from: #4f46e5 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(79 70 229 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500 {
  --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500 {
  --tw-gradient-from: #ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-600 {
  --tw-gradient-from: #db2777 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(219 39 119 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-600 {
  --tw-gradient-from: #9333ea var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 51 234 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-50 {
  --tw-gradient-from: #fef2f2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(254 242 242 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-500 {
  --tw-gradient-from: #ef4444 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-600 {
  --tw-gradient-from: #dc2626 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(220 38 38 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-50 {
  --tw-gradient-from: #f8fafc var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(248 250 252 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-violet-500 {
  --tw-gradient-from: #8b5cf6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(139 92 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-blue-50 {
  --tw-gradient-to: rgb(239 246 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #eff6ff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-orange-600 {
  --tw-gradient-to: rgb(234 88 12 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #ea580c var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-500 {
  --tw-gradient-to: rgb(168 85 247 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #a855f7 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-600 {
  --tw-gradient-to: rgb(147 51 234 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #9333ea var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[\#5356D2\] {
  --tw-gradient-to: #5356D2 var(--tw-gradient-to-position);
}
.to-\[\#764ba2\] {
  --tw-gradient-to: #764ba2 var(--tw-gradient-to-position);
}
.to-\[\#7c3aed\] {
  --tw-gradient-to: #7c3aed var(--tw-gradient-to-position);
}
.to-\[\#9092E2\] {
  --tw-gradient-to: #9092E2 var(--tw-gradient-to-position);
}
.to-\[\#B8A4F3\] {
  --tw-gradient-to: #B8A4F3 var(--tw-gradient-to-position);
}
.to-\[\#F5F3FF\] {
  --tw-gradient-to: #F5F3FF var(--tw-gradient-to-position);
}
.to-\[\#F9FAFE\] {
  --tw-gradient-to: #F9FAFE var(--tw-gradient-to-position);
}
.to-amber-500 {
  --tw-gradient-to: #f59e0b var(--tw-gradient-to-position);
}
.to-blue-50 {
  --tw-gradient-to: #eff6ff var(--tw-gradient-to-position);
}
.to-blue-600 {
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.to-blue-700 {
  --tw-gradient-to: #1d4ed8 var(--tw-gradient-to-position);
}
.to-blue-800 {
  --tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}
.to-cyan-50 {
  --tw-gradient-to: #ecfeff var(--tw-gradient-to-position);
}
.to-cyan-700 {
  --tw-gradient-to: #0e7490 var(--tw-gradient-to-position);
}
.to-emerald-600 {
  --tw-gradient-to: #059669 var(--tw-gradient-to-position);
}
.to-gray-600 {
  --tw-gradient-to: #4b5563 var(--tw-gradient-to-position);
}
.to-indigo-50 {
  --tw-gradient-to: #eef2ff var(--tw-gradient-to-position);
}
.to-indigo-500 {
  --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}
.to-orange-500 {
  --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}
.to-orange-600 {
  --tw-gradient-to: #ea580c var(--tw-gradient-to-position);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-pink-600 {
  --tw-gradient-to: #db2777 var(--tw-gradient-to-position);
}
.to-purple-400 {
  --tw-gradient-to: #c084fc var(--tw-gradient-to-position);
}
.to-purple-50 {
  --tw-gradient-to: #faf5ff var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-purple-700 {
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}
.to-red-700 {
  --tw-gradient-to: #b91c1c var(--tw-gradient-to-position);
}
.to-rose-600 {
  --tw-gradient-to: #e11d48 var(--tw-gradient-to-position);
}
.to-teal-50 {
  --tw-gradient-to: #f0fdfa var(--tw-gradient-to-position);
}
.to-teal-600 {
  --tw-gradient-to: #0d9488 var(--tw-gradient-to-position);
}
.bg-shine {
  background-size: 200% 100%;
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.fill-current {
  fill: currentColor;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.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-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-28 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-12 {
  padding-bottom: 3rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-14 {
  padding-left: 3.5rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pr-6 {
  padding-right: 1.5rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.align-top {
  vertical-align: top;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.font-sans {
  font-family: Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}
.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.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-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-loose {
  line-height: 2;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#0394c7\] {
  --tw-text-opacity: 1;
  color: rgb(3 148 199 / var(--tw-text-opacity, 1));
}
.text-\[\#06b6d4\] {
  --tw-text-opacity: 1;
  color: rgb(6 182 212 / var(--tw-text-opacity, 1));
}
.text-\[\#10b981\] {
  --tw-text-opacity: 1;
  color: rgb(16 185 129 / var(--tw-text-opacity, 1));
}
.text-\[\#1F2185\] {
  --tw-text-opacity: 1;
  color: rgb(31 33 133 / var(--tw-text-opacity, 1));
}
.text-\[\#21367f\] {
  --tw-text-opacity: 1;
  color: rgb(33 54 127 / var(--tw-text-opacity, 1));
}
.text-\[\#2A2D9F\] {
  --tw-text-opacity: 1;
  color: rgb(42 45 159 / var(--tw-text-opacity, 1));
}
.text-\[\#333\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}
.text-\[\#334155\] {
  --tw-text-opacity: 1;
  color: rgb(51 65 85 / var(--tw-text-opacity, 1));
}
.text-\[\#374151\] {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-\[\#3b82f6\] {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity, 1));
}
.text-\[\#475569\] {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-\[\#4B5563\] {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-\[\#5356D2\] {
  --tw-text-opacity: 1;
  color: rgb(83 86 210 / var(--tw-text-opacity, 1));
}
.text-\[\#6366f1\] {
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / var(--tw-text-opacity, 1));
}
.text-\[\#64748b\] {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-\[\#666\] {
  --tw-text-opacity: 1;
  color: rgb(102 102 102 / var(--tw-text-opacity, 1));
}
.text-\[\#6B7280\] {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-\[\#84cc16\] {
  --tw-text-opacity: 1;
  color: rgb(132 204 22 / var(--tw-text-opacity, 1));
}
.text-\[\#888\] {
  --tw-text-opacity: 1;
  color: rgb(136 136 136 / var(--tw-text-opacity, 1));
}
.text-\[\#8b5cf6\] {
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.text-\[\#9092E2\] {
  --tw-text-opacity: 1;
  color: rgb(144 146 226 / var(--tw-text-opacity, 1));
}
.text-\[\#A0AEC0\] {
  --tw-text-opacity: 1;
  color: rgb(160 174 192 / var(--tw-text-opacity, 1));
}
.text-\[\#E9F0FF\] {
  --tw-text-opacity: 1;
  color: rgb(233 240 255 / var(--tw-text-opacity, 1));
}
.text-\[\#d946ef\] {
  --tw-text-opacity: 1;
  color: rgb(217 70 239 / var(--tw-text-opacity, 1));
}
.text-\[\#ec4899\] {
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-\[\#ef4444\] {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-\[\#f59e0b\] {
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-\[\#f97316\] {
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity, 1));
}
.text-\[rgba\(42\2c 45\2c 159\2c 0\.85\)\] {
  color: rgba(42,45,159,0.85);
}
.text-amber-600 {
  --tw-text-opacity: 1;
  color: rgb(217 119 6 / var(--tw-text-opacity, 1));
}
.text-anubavam-primary {
  --tw-text-opacity: 1;
  color: rgb(42 45 159 / var(--tw-text-opacity, 1));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / var(--tw-text-opacity, 1));
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity, 1));
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity, 1));
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity, 1));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-green-900 {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / var(--tw-text-opacity, 1));
}
.text-indigo-100 {
  --tw-text-opacity: 1;
  color: rgb(224 231 255 / var(--tw-text-opacity, 1));
}
.text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}
.text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity, 1));
}
.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity, 1));
}
.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / var(--tw-text-opacity, 1));
}
.text-pink-600 {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / var(--tw-text-opacity, 1));
}
.text-purple-100 {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / var(--tw-text-opacity, 1));
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity, 1));
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / var(--tw-text-opacity, 1));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-slate-600 {
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity, 1));
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity, 1));
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity, 1));
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.placeholder-gray-400::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.placeholder-gray-400::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(156 163 175 / var(--tw-placeholder-opacity, 1));
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-80 {
  opacity: 0.8;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-black\/5 {
  --tw-ring-color: rgb(0 0 0 / 0.05);
}
.blur {
  --tw-blur: blur(8px);
  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);
}
.brightness-0 {
  --tw-brightness: brightness(0);
  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);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
.drop-shadow-lg {
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  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);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  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);
}
.invert {
  --tw-invert: invert(100%);
  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);
}
.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);
}
.backdrop-blur {
  --tw-backdrop-blur: blur(8px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-md {
  --tw-backdrop-blur: blur(12px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.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(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;
}
.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;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-\[cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\] {
  transition-timing-function: cubic-bezier(0.4,0,0.2,1);
}
.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.will-change-transform {
  will-change: transform;
}
.text-shine {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2s ease-in-out;
}
.\[animation\:slideInUp_0\.6s_cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)_forwards\] {
  animation: slideInUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* CSS Variables - Exact match from reference HTML */
:root {
  --anubavam-primary: #2A2D9F;
  --anubavam-secondary: #5356D2;
  --anubavam-tertiary: #9092E2;
  --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6, #7c3aed);
  --gradient-button: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  --gradient-button-hover: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Font Poppins utility class */
.font-poppins {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Base text-gradient class - Exact match from reference HTML */
.text-gradient {
  background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

input::-moz-placeholder {
  color: #ccc;
  opacity: 0.5;
}

input::placeholder {
  color: #ccc;
  opacity: 0.5;
}

/* Import comprehensive shine effects */

/* Local Poppins fonts */
@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/fonts/poppins/Poppins-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* DISABLE ALL SCROLL-TRIGGERED FADE/SLIDE ANIMATIONS GLOBALLY */
* {
  animation-play-state: running !important;
}

/* Ensure all sections are visible immediately - no fade-in delays */
section,
div[class*="section"],
article,
.grid-item,
.bento-item,
.animate,
.animate-in,
.fade-in,
.slide-in,
.slide-up,
[class*="animate"],
[class*="fade"],
[class*="slide"] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Disable all scroll-triggered animations */
@keyframes slideInUp {
  from, to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
  from, to { opacity: 1; transform: scale(1); }
}

@keyframes fadeIn {
  from, to { opacity: 1; }
}

/* Override any data-attribute triggered animations */
[data-animate],
[data-animation],
[data-aos],
[data-scroll],
[style*="opacity: 0"],
[style*="transform: translateY"] {
  opacity: 1 !important;
  transform: none !important;
}

/* Disable text shine animations on scroll */
.text-gradient,
.gradient-text {
  animation: none !important;
}

/* Override content-hidden class used in sections */
.content-hidden,
.content-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Keep only background animations (hero gradients, floating dots) - these are continuous, not scroll-triggered */
.hero-gradient,
.bg-orb,
.floating-dot-bottom {
  animation-play-state: running !important;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

.gradient-text {
  background: linear-gradient(to right, #2A2D9F, #5356D2, #9092E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Apply gradient to nav link text when its parent li.group is hovered */
.group:hover .nav-link-gradient {
  background-image: linear-gradient(135deg, #2A2D9F, #5356D2, #9092E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Subtle hover background overlay behind nav link, matching reference */
.group:hover .nav-link-anchor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(244 244 255);
  border-radius: 8px;
  z-index: 0;
}

/* Prevent layout shift by reserving the hover overlay space */
.nav-link-anchor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
}

/* Match reference hover target spacing */
.nav-dropdown {
  padding: 24px 9px;
}

/* Animations to match Homage HTML */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(83, 86, 210, 0.3); }
  50% { box-shadow: 0 0 30px rgba(83, 86, 210, 0.6); }
}

.pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

.blog-featured-section { }
.blog-featured-title { font-weight: 700; line-height: 1.2; }
.blog-featured-label { font-weight: 600; letter-spacing: 0.05em; }
.blog-featured-description { font-weight: 400; line-height: 1.6; }
.blog-featured-link { font-weight: 600; }

/* Homepage additional styles */
.hero-gradient {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #7c3aed 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

/* Additional hero gradient variants to match reference */
.hero-gradient-2 {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}
.hero-gradient-3 {
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #8b5cf6 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}
.hero-gradient-4 {
  background: linear-gradient(135deg, #312e81 0%, #4338ca 50%, #7c3aed 100%);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
}

/* Indigo brand gradient used on services hero to match reference */
.hero-gradient-indigo {
  background: linear-gradient(135deg, #2A2D9F 0%, #5356D2 50%, #9092E2 100%);
}

.abstract-shape-1 {
  position: absolute;
  width: 300px; height: 400px;
  background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(124,58,237,0.15));
  border-radius: 50% 30% 70% 40%;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.abstract-shape-2 {
  position: absolute;
  width: 250px; height: 350px;
  background: linear-gradient(135deg, rgba(220,38,38,0.15), rgba(239,68,68,0.15));
  border-radius: 40% 60% 30% 70%;
  filter: blur(40px);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gradient text + shine effect */
.text-gradient {
  background: linear-gradient(135deg, #2A2D9F, #5356D2, #9092E2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@keyframes textShine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.text-gradient.shine {
  background: linear-gradient(135deg, #1e40af, #3b82f6, #ffffff, #7c3aed, #1e40af);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 2s ease-in-out;
}

/* Reference-like card visuals */
.card-underline {
  width: 48px; height: 4px; border-radius: 8px;
  background: linear-gradient(90deg,#7c3aed,#6366f1);
}

/* Primary gradient button (used in Global Presence CTA) */
.gradient-btn-primary {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}
.gradient-btn-primary::before {
  content: "";
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  transition: left 0.3s ease;
  z-index: 0;
}
.gradient-btn-primary:hover::before { left: 0; }
.gradient-btn-primary > * { position: relative; z-index: 1; }

/* Hero buttons */
.hero-btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.hero-btn-glass::before {
  content: "";
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease; z-index: 0;
}
.hero-btn-glass:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); transform: translateY(-2px) scale(1.05); color: white !important; }
.hero-btn-glass:hover::before { left: 100%; }
.hero-btn-glass span { position: relative; z-index: 1; color: inherit; }

.hero-btn-fill {
  background: transparent; border: 2px solid rgba(255,255,255,0.8); color: white !important;
  position: relative; overflow: hidden; transition: all 0.4s ease; display: inline-block;
}
.hero-btn-fill::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,0.95); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; z-index: 0; }
.hero-btn-fill:hover::before { transform: scaleX(1); }
.hero-btn-fill:hover { color: #1e40af !important; border-color: rgba(255,255,255,1); transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 25px rgba(255,255,255,0.3); text-decoration: none; }
.hero-btn-fill:hover span { color: #1e40af !important; }
.hero-btn-fill span { position: relative; z-index: 1; transition: color 0.3s ease; }

/* Solution shine cards */
.shine-effect { position: relative; overflow: hidden; background: white; }
.shine-effect::before { content: ""; position: absolute; top:0; left:-100%; width:100%; height:100%; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.5) 30%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.5) 70%, transparent 80%); transform: skewX(-25deg); transition: left 0.6s ease-out; z-index: 10; pointer-events:none; }
.shine-effect:hover::before { left: 100%; }
.solution-card { transition: all 0.3s ease; position: relative; cursor: pointer; }
.solution-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 40px rgba(42,45,159,0.15), 0 10px 20px rgba(42,45,159,0.1); }

/* Floating dots (Global presence) */
.floating-dots-container { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.floating-dot-bottom { position: absolute; bottom: -10px; width: 16px; height: 16px; background: rgba(59,130,246,0.3); border-radius: 50%; animation: riseFromBottom 25s linear infinite; }
.floating-dot-bottom:nth-child(2) { width: 10px; height: 10px; background: rgba(42,45,159,0.25); animation-duration: 30s; }
.floating-dot-bottom:nth-child(3) { width: 14px; height: 14px; background: rgba(144,146,226,0.3); animation-duration: 35s; }
.floating-dot-bottom:nth-child(4) { width: 8px; height: 8px; background: rgba(83,86,210,0.25); animation-duration: 28s; }
.floating-dot-bottom:nth-child(5) { width: 18px; height: 18px; background: rgba(59,130,246,0.2); animation-duration: 32s; }
.floating-dot-bottom:nth-child(6) { width: 10px; height: 10px; background: rgba(42,45,159,0.3); animation-duration: 27s; }
.floating-dot-bottom:nth-child(7) { width: 14px; height: 14px; background: rgba(144,146,226,0.25); animation-duration: 38s; }
.floating-dot-bottom:nth-child(8) { width: 16px; height: 16px; background: rgba(83,86,210,0.28); animation-duration: 29s; }
@keyframes riseFromBottom {
  0% { transform: translateY(0px) translateX(0px) scale(0.3); opacity: 0; }
  10% { transform: translateY(-120px) translateX(30px) scale(0.5); opacity: 0.4; }
  20% { transform: translateY(-250px) translateX(-20px) scale(0.7); opacity: 0.7; }
  30% { transform: translateY(-390px) translateX(45px) scale(0.9); opacity: 0.9; }
  40% { transform: translateY(-540px) translateX(-35px) scale(1.1); opacity: 1; }
  50% { transform: translateY(-700px) translateX(60px) scale(1.2); opacity: 1; }
  60% { transform: translateY(-870px) translateX(-40px) scale(1.1); opacity: 0.9; }
  70% { transform: translateY(-1050px) translateX(50px) scale(0.9); opacity: 0.7; }
  80% { transform: translateY(-1240px) translateX(-30px) scale(0.7); opacity: 0.5; }
  90% { transform: translateY(-1440px) translateX(25px) scale(0.5); opacity: 0.3; }
  100% { transform: translateY(-1650px) translateX(0px) scale(0.2); opacity: 0; }
}

/* Typing cursor */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.typing-cursor::after {
  content: '|';
  animation: blink 1s infinite;
  color: #3b82f6;
}

/* Additional animations used in demo */
@keyframes slideInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInScale {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes barGrow {
  from { height: 0; }
  to { height: var(--target-height); }
}

@keyframes donutSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes metricFlash {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}

/* Footer styles from reference - ANIMATIONS DISABLED */
.footer-section {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}
.footer-section.animate { opacity: 1; transform: translateY(0); }

.footer-logo { transition: all 0.3s ease; }
.footer-logo:hover { transform: scale(1.05); }

.footer-nav-link { position: relative; transition: all 0.3s ease; padding: 4px 0; }
.footer-nav-link::before {
  content: "";
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: rgba(255,255,255,0.5); transition: width 0.3s ease;
}
.footer-nav-link:hover::before { width: 100%; }
.footer-nav-link:hover { transform: translateX(4px); color: rgba(255,255,255,1); }

.social-link { position: relative; transition: all 0.3s ease; border-radius: 9999px; padding: 8px; }
.social-link:hover { transform: translateY(-2px) scale(1.1); }
.social-link::before { content: ""; position: absolute; inset: -2px; background: linear-gradient(45deg,#fff,#f0f0f0,#fff); border-radius: 9999px; opacity: 0; z-index: -1; transition: opacity 0.3s ease; }
.social-link:hover::before { opacity: 0.3; }

.legal-link { transition: all 0.3s ease; position: relative; }
.legal-link::after { content: ""; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: rgba(255,255,255,0.5); transition: width 0.3s ease; }
.legal-link:hover::after { width: 100%; }

.copyright-section { border-top: 1px solid rgba(255,255,255,0.2); margin-top: 32px; padding-top: 32px; }

.certifications-highlight {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px; padding: 16px; position: relative; overflow: hidden; transition: all 0.3s ease;
}
.certifications-highlight::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg,transparent,rgba(255,255,255,0.1),transparent); transition: left 0.5s ease; }
.certifications-highlight:hover::before { left: 100%; }
.certifications-highlight:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(255,255,255,0.1); }
.certifications-text { font-weight: 600; color: #ffffff; position: relative; z-index: 2; }
.certifications-badge { display: inline-block; background: rgba(42,45,159,0.8); color: #fff; padding: 4px 8px; border-radius: 4px; margin: 0 2px; font-size: 12px; font-weight: 600; transition: all 0.3s ease; }
.certifications-badge:hover { background: rgba(42,45,159,1); transform: translateY(-1px); }

/* Client logos slow vertical scroll (Trusted by Global Leaders) */
@keyframes logoScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.logo-showcase { height: 24rem; }
.logo-column { display: flex; flex-direction: column; gap: 2rem; min-height: 200%; }
.logo-scroll { animation: logoScroll 30s linear infinite; }

/* Education modules scrolling animation (Creatrix Campus) */
@keyframes scrollUpModules {
  0% { transform: translateY(0); }
  100% { transform: translateY(-400px); }
}

/* Floating platform animation for isometric modules */
@keyframes floatPlatform {
  0%, 100% { transform: translateZ(0px); }
  50% { transform: translateZ(20px); }
}

/* Logo popup animations */
@keyframes popupLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes pulseOverlay {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateGradientRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes flagshipPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 0 0 8px rgba(139, 92, 246, 0.1), 0 0 60px rgba(59, 130, 246, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2), 0 0 0 12px rgba(139, 92, 246, 0.15), 0 0 80px rgba(59, 130, 246, 0.5);
  }
}

@keyframes orbitParticle1 {
  0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes orbitParticle2 {
  0% { transform: rotate(120deg) translateX(110px) rotate(-120deg); }
  100% { transform: rotate(480deg) translateX(110px) rotate(-480deg); }
}

@keyframes orbitParticle3 {
  0% { transform: rotate(240deg) translateX(115px) rotate(-240deg); }
  100% { transform: rotate(600deg) translateX(115px) rotate(-600deg); }
}

@keyframes expandingWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes holographicFloat {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
    filter: hue-rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    filter: hue-rotate(10deg);
  }
  66% {
    transform: translateY(-5px) rotateX(-2deg) rotateY(2deg);
    filter: hue-rotate(-10deg);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes rotateLightBeam {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px);
    opacity: 1;
  }
}

@keyframes magneticPulse {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.03);
    filter: brightness(1.1);
  }
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.3;
  }
}

@keyframes energyPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

@keyframes gemRotate {
  0%, 100% {
    transform: rotate(0deg);
    filter: brightness(1) hue-rotate(0deg);
  }
  25% {
    transform: rotate(2deg);
    filter: brightness(1.1) hue-rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
    filter: brightness(1.05) hue-rotate(10deg);
  }
  75% {
    transform: rotate(-2deg);
    filter: brightness(1.1) hue-rotate(5deg);
  }
}

@keyframes rotateLightRay1 {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotateLightRay2 {
  0% { transform: rotate(60deg); }
  100% { transform: rotate(420deg); }
}

@keyframes rotateLightRay3 {
  0% { transform: rotate(120deg); }
  100% { transform: rotate(480deg); }
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cosmicBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.4), 0 0 100px rgba(139, 92, 246, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(59, 130, 246, 0.5), 0 0 120px rgba(139, 92, 246, 0.3), inset 0 0 40px rgba(255, 255, 255, 0.7);
  }
}

@keyframes nebulaFlow {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1) rotate(180deg);
    opacity: 0.9;
  }
}

@keyframes orbitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes stardustFloat1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  25% { transform: translate(5px, -8px); opacity: 1; }
  50% { transform: translate(-3px, -15px); opacity: 0.7; }
  75% { transform: translate(8px, -8px); opacity: 1; }
}

@keyframes stardustFloat2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.5; }
  33% { transform: translate(-6px, -10px); opacity: 1; }
  66% { transform: translate(4px, -12px); opacity: 0.8; }
}

@keyframes stardustFloat3 {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  40% { transform: translate(7px, -6px); opacity: 1; }
  80% { transform: translate(-5px, -10px); opacity: 0.6; }
}

@keyframes simpleCircleExpand {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes shine {
  0% { opacity: 0; transform: rotate(45deg) translateX(-200%); }
  50% { opacity: 1; transform: rotate(45deg) translateX(0%); }
  100% { opacity: 0; transform: rotate(45deg) translateX(200%); }
}

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

@keyframes swipeLight {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Premium Effects Animations */
@keyframes premiumFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes premiumPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes premiumSwipe {
  0% { transform: translate(-150%, -150%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translate(150%, 150%); opacity: 0; }
}

/* Flow Diagram Animations */
@keyframes flowSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(4px);
  }
}

@keyframes numberGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
  50% {
    box-shadow: 0 0 20px 4px rgba(99, 102, 241, 0.4);
  }
}

/* Custom scrollbar for flow diagram */
aside::-webkit-scrollbar {
  width: 2px;
}

aside::-webkit-scrollbar-track {
  background: transparent;
}

aside::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

aside::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Auto-scroll animation for flow diagram */
@keyframes autoScroll {
  0% {
    scroll-behavior: smooth;
  }
  100% {
    scroll-behavior: smooth;
  }
}

aside.auto-scrolling {
  animation: autoScroll 12s linear infinite;
}

aside.auto-scrolling #flowDiagramContent {
  animation: scrollContent 12s linear infinite;
}

@keyframes scrollContent {
  0% {
    transform: translateY(0);
  }
  95% {
    transform: translateY(calc(-100% + 552px));
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes premiumSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.3) rotate(180deg); }
}

@keyframes orbitParticle {
  0% { transform: rotate(0deg) translateX(130px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(130px) rotate(-360deg); }
}

/* Dashboard Chart Animations */
@keyframes barGrow {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}

@keyframes fillCircle {
  0% { stroke-dashoffset: 220; }
  100% { stroke-dashoffset: var(--offset, 66); }
}

@keyframes dashboardGlow {
  0%, 100% { box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15); }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
    left: -100%;
  }
  100% {
    background-position: 1000px 0;
    left: 100%;
  }
}

/* Dashboard animations */
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes statusPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

@keyframes barPulse {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.95);
  }
}

@keyframes metricFlash {
  0%, 100% {
    background: rgba(255,255,255,0.15);
  }
  50% {
    background: rgba(255,255,255,0.2);
  }
}

@keyframes metricDataRefresh {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.98);
  }
}

@keyframes numberCountUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sales Assistant Chat Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ============================================ */
/* GLOBAL RESPONSIVE STYLES                    */
/* ============================================ */

/* Tablet - Large (1024px - 1280px) */
@media (max-width: 1280px) {
  body {
    font-size: 16px;
  }

  /* Adjust abstract shapes for tablet */
  .abstract-shape-1,
  .abstract-shape-2 {
    width: 250px !important;
    height: 300px !important;
  }
}

.strategy-okr-mobile-image {
  display: none;
}

/* Tablet - Medium (768px - 1024px) - iPad */
@media (max-width: 1024px) {
  /* Typography */
  h2 {
    font-size: 2rem !important;
  }

  h3 {
    font-size: 1.5rem !important;
  }

  h4 {
    font-size: 1.25rem !important;
  }

  /* Hide desktop nav, show mobile menu */
  header nav {
    display: flex !important;
  }

  /* Abstract shapes */
  .abstract-shape-1,
  .abstract-shape-2 {
    width: 200px !important;
    height: 250px !important;
    filter: blur(35px) !important;
  }

  /* Adjust floating dots */
  .floating-dots-container {
    display: block;
  }

  /* iPad-specific improvements */
  .container, section > div {
    padding: 60px 40px !important;
  }

  .hero-section .container {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  .client-success-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }

  /* Ensure proper spacing on iPad */
  .image-section-container {
    padding: 60px 40px !important;
  }

  .image-section-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Hero section adjustments for iPad */
  .left-content {
    text-align: center !important;
    max-width: 100% !important;
  }

  .card-container {
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  /**/
  .section-ai-sales-intelligence-platform-title .content-graphic.graphic-section-animated.graphic-animate-slide ,
  .section-ai-low-code-automation-platform-title .content-graphic.graphic-section-animated.graphic-animate-slide ,
  .section-ai-low-code-automation-platform-title .graphic-section-image.jsx-e1d28b88e2da0bb {
    height: auto !important; 
    max-height: -moz-max-content !important; 
    max-height: max-content !important;
  }
    .section-ai-low-code-automation-platform-title .graphic-wrapper.jsx-e1d28b88e2da0bb {
        min-height: 400px !important;
        max-height: 100% !important;
    }
  .section-ai-low-code-automation-platform-title .graphic-section-image aside {
    max-width: inherit !important;
    min-width: 100% !important;
  }
  .section-ai-sales-intelligence-platform-title  .graphic-section-image.content-graphic.graphic-section-animated ,
  .content-graphic.graphic-section-animated.graphic-animate-slide {
    height: auto !important; 
    max-height: -moz-max-content !important; 
    max-height: max-content !important;
  }
}

/* Mobile - Large (640px - 768px) */
@media (max-width: 480px) {
  aside.jsx-81ade5ec9aae9506.graphic-visible {
    padding: 5px !important;
    gap: 4px !important;
  }
  .section-aisuite-wrapper {
    overflow: inherit !important;
  }
   section > .graphic-section-container.jsx-d4c0cb24769cf329 {
    padding: 0px !important;
  }
  .overflow-x-hidden.section-our-story-title ection {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
  section  .content-article.jsx-d4c0cb24769cf329 {
    order: 1;
    margin-bottom: 55px;
  }
  .image-section-grid.content-visible aside {
    padding: 15px !important
  }
  section .graphic-section-container.jsx-d4c0cb24769cf329 {
    overflow: initial !important;
  }
  .image-section-grid.content-visible aside.section-cloudintelligence-wrapper {
    padding: 10px 2px 10px !important
  } 
  .section-aidevelopment-wrapper 
  {
    min-height: 300px !important;
  }
  .section-whyweexist-wrapper {
    min-height: 300px !important;
    padding: 0 !important;
    box-shadow: 0 0 0 !important;
  }

  .section-contact-anubavam-title header > div:nth-child(2) ,
  .section-home-title section header >  div:nth-child(2) {
    display: none !important;
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 0%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 0%);
  }
}

/* Mobile - Large (640px - 768px) */
@media (max-width: 768px) {
  /* Standard mobile padding: 20px left and right */
  .container,
  section > div,
  .image-section-container,
  .studio-section,
  main > div,
  article > div {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  section > div {
    padding-top: 0 !important;
  }

  .footer-section {
      padding: 0px 20px !important;
  }

  .global-office-grid .office-card.jsx-cfe0fe030a5e544b {
    min-width: calc(100% - 10px) !important;
    max-width: calc(100% - 10px) !important;
    scroll-snap-align: center !important;
    flex-shrink: 0 !important;
  }

  section.jsx-cfe0fe030a5e544b.relative > div.jsx-cfe0fe030a5e544b {
    padding: 32px 25px !important;
  }
  
  section article img {
    width: 100 !important;
    max-height: 200px !important; 
    height: auto !important;
    margin: 0 auto;
  }

  .graphic-section-grid aside {
    aspect-ratio: auto !important;
    padding: 10px !important;
  }

  aside {
    aspect-ratio: auto !important;
  }

  .section-ai-cloud-infrastructure-services-title aside.section-infrastructure-wrapper {
    aspect-ratio: 1/1.2 !important;
  }

  .graphic-section-image > div ,
  .graphic-section-grid > div ,
   .content-graphic.graphic-section-image.jsx-c41143b130b9c20a {
    max-height:  inherit !important;
  }
    

  /* Hide "Trusted by Global Leaders" title on mobile */
  .client-success-title {
    display: none !important;
  }

  .client-success-header {
    margin-bottom: 40px !important;
  }

  .client-success-description {
    font-size: 1rem !important;
  }

  /* Client Success Grid - Stack on mobile */
  .client-success-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .logo-showcase-container {
    order: 2 !important;
  }

  .client-testimonial-container {
    order: 1 !important;
  }

  /* Typography */
  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1.125rem !important;
  }

  p {
    font-size: 0.9375rem;
  }

  /* Abstract shapes */
  .abstract-shape-1,
  .abstract-shape-2,
  .abstract-shape-industry,
  .abstract-shape-industry-2,
  .abstract-shape-industry-3 {
    width: 180px !important;
    height: 220px !important;
    filter: blur(30px) !important;
  }

  /* Disable all scroll animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }

  /* Floating dots - reduce complexity */
  .floating-dot-bottom:nth-child(n+5) {
    display: none;
  }

  /* Buttons */
  .gradient-btn-primary,
  .hero-btn-glass,
  .hero-btn-fill {
    padding: 11px 22px !important;
    font-size: 0.9375rem !important;
  }

  /* Footer adjustments */
  .footer-section {
    padding: 40px 24px !important;
  }

  .certifications-highlight {
    padding: 12px !important;
    font-size: 0.875rem !important;
  }

  .certifications-badge {
    font-size: 11px !important;
    padding: 3px 6px !important;
  }

  /* Text gradients - simplify for performance */
  .text-gradient,
  .text-brand-gradient {
    -webkit-text-fill-color: #2A2D9F !important;
    background: none !important;
  }

  .graphic-animate-slide.graphic-visible {
    min-width: 100%;
  }
}

@media (max-width: 680px) {
  section aside.jsx-f42de5b67d4ab121 {
    padding: 40px 8px !important;
    min-height: 450px !important;
  }

  .section-integrationai-wrapper {
    min-height: 300px !important;
  }

  .section-aicloudwhat-wrapper {
    padding: 0 !important;
    box-shadow: 0 0 0 !important;
    min-height: auto !important;
  }
  .section-ai-data-and-cloud-transformation-title div .data-cloud-architecture-wrapper {
     padding: 0px !important;
     max-width: 100% !important;
     width: 100% !important;
     margin-bottom: 0 !important;
  }
}
@media (max-width: 560px) {
  .graphic-section-grid > div > div aside#ai-studio-dashboard > div:last-child > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) 
  {
    display: block !important;
  }
   .graphic-section-grid > div > div aside#ai-studio-dashboard > div:last-child > div:nth-child(2) > div:nth-child(2) > div:nth-child(2) > div
  {
    width: 46% !important;
    float: left;
    min-height: 130px;
    margin: 2%;
  }
  aside#ai-studio-dashboard > div:last-child {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: 0 0 0 !important;
  }
}
/* Responsive fix for IntegrationHubGraphic container (480px - 680px) */
@media (min-width: 480px) and (max-width: 680px) {
  div.jsx-c41143b130b9c20a[style*="max-width:600px"][style*="min-height:400px"],
  .integration-hub-container {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 380px !important;
    max-height: 520px !important;
    padding: clamp(12px, 3vw, 24px) !important;
    aspect-ratio: unset !important;
  }

  div.jsx-c41143b130b9c20a[style*="max-width:600px"] .integration-hub,
  .integration-hub-container .integration-hub {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
  }

  /* Ensure nodes stay visible and readable */
  .integration-hub-container .system-node {
    font-size: clamp(0.65rem, 2vw, 0.75rem) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  nav .grid.grid-cols-12.gap-10 {
    gap: 7.6rem !important;
  }
}

/* Mobile - Small (480px - 640px) */
@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  /* Standard mobile padding: 20px left and right */
  .container,
  section > div,
  .image-section-container,
  .studio-section,
  main > div,
  article > div {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .solution-card {
    width: 100%;
  }

  /* .container > div {
    height: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-width: 100%;
  }

  .container  > div {
    width : 100 !important;
  } */

  .container.insights-whitepapers-section-1 > div:last-child  {
    display: block !important;
  } 

  .container.insights-whitepapers-section-1 > div:last-child > div  {
      margin-bottom: 20px;
  } 

  #resources {
    position: relative !important; 
  }

  #resource-grid > div {
    display: block !important;
  }

  #resource-grid > div article {
    margin-bottom: 20px;
  }

  section .graphic-section-container,
  section {
    min-width: 100% !important;
    max-width: 100% !important;
  }

  .main-content.w-full.pt-24 {
    padding-top: 4rem;
  }

  .section-insights-whitepapers-title main > div > div > div:first-child  {
    display: none !important;
  }

  .section-ai-platform-wrapper .integration-hub.visible .system-node ,
  .section-ai-platform-wrapper .integration-hub.visible.jsx-6226a00bdc7d7a23 .system-node.jsx-6226a00bdc7d7a23 {
    transform: translate(-50%, -50%) scale(1) !important;
  }
  .section-ai-platform-wrapper  .integration-hub.visible.jsx-6226a00bdc7d7a23 .central-hub.jsx-6226a00bdc7d7a23 {
    transform: translate(-55%, -87%) scale(1) !important;
  }
   /* .section-insights-whitepapers-title main > div > div {
    grid-template-columns: auto !important;
    height: 80% !important;
    padding-bottom: 20px;
   } */
   

    /* .section-insights-whitepapers-title main > div > div > div {
    overflow-y: scroll !important; 
    padding-left: 20px !important;
    padding-right: 20px !important;
   } */

    /* .section-insights-whitepapers-title main > div > div > div button {
      padding: 20px 32px !important;
      margin-bottom: 20px;
    } */

    #subscribe input {
      width: 60%;
    }

    div form #phone{
      width: 60%;
    }

    .strategy-okr-mobile-image {
      display: block;
      border-radius: 10px;
    }
    .strategy-okr-right-container {
      display: none !important;
    }
    
    .section-infrastructure-wrapper {
      max-width: 100% !important;
      min-width:  100% !important;
      height: auto !important;
    }
    .dis-block {
       display: block !important;
    }
    .dis-block > div {
      margin-bottom: 15px;
    }

    
    .section-impact-wrapper {
      padding: 0 !important;
    }
    .image-section-grid aside.section-impact-wrapper {
      min-height: 200px !important;
    }
    
  
  /* section header  > div {
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 0%) !important;
    -webkit-mask-image: radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 0%) !important;
  }  */

  .section-ai-marketing-experience-title section aside.graphic-visible {
      height: auto !important;
      min-height : auto !important;
      min-width: 100% !important;
  } 

  .section-ai-marketing-experience-title  aside  {
    height: auto !important;
      min-height : auto !important;
  }
  .section-ai-marketing-experience-title div.jsx-c41143b130b9c20a[style*="max-width:600px"][style*="min-height:400px"] {
    max-height: auto !important;
  }

  .section-healthcare-title section:nth-child(6) .text-gray-700 ,
  .section-healthcare-title section:nth-child(6) .text-gray-600 ,
  .section-healthcare-title section:nth-child(6) .text-blue-600 ,
  .section-healthcare-title section:nth-child(6) .to-purple-600 {
    color : #fff !important;
    -webkit-text-fill-color: #fff !important;
  }
  /* .jsx-c41143b130b9c20a.graphic-section-container aside , */
  .image-section-grid aside{
    min-width: 100% !important;
    height: auto !important;
    min-height: 400px !important;

  }

  h2.content-title {
    color: #111827;
  }
  
  footer > div > div:nth-child(2) > div > div:nth-child(3) > div {
    display: block !important;
  }
  footer > div > div:nth-child(2) > div > div:nth-child(3) > div > div  {
   margin-bottom: 15px;
  }
  footer > div > div:nth-child(2) > div > div:nth-child(3) > div > div img {
    width: 80px;
  }
  footer .footer-section {
    padding : 0 !important;
  }

  .hero-section .container  {
    display: grid;
  }
  .resource-card-0,
  .resource-card-1,
  .resource-card-2,
  .resource-card-3 {
    opacity: 1 !important;
  }

  .section-integration-as-a-service-title section:nth-child(2) > div > div > div {
    display: none !important;
  }
  .section-identity-access-management-title section:nth-child(6) > div > div > div {
    display: none !important;
  }

  .section-identity-access-management-title  .image-section-container.jsx-e31cef2987abe875 {
    padding: 32px 8px !important;
  }

  .section-identity-access-management-title .graphic-section-container.jsx-c41143b130b9c20a {
    padding: 2px 0px !important;
  }

   .section-home-title   .image-section-grid.content-visible aside {
        padding: 0px !important;
    }
  
  .section-cloud-infrastructure-title section > div > div > div > div {
      display: block !important;
      overflow: scroll !important;
  }
  .section-cloud-infrastructure-title .card-container {
    width : 100%;
  }
  /* .jsx-e31cef2987abe875.image-section-container .jsx-d0a9e0ccdeecd71a.graphic-visible{
    min-width: 100vh !important;
  } */
  aside.graphic-visible {
    padding: 20px !important;
  }

  /* section .graphic-section-container.jsx-c41143b130b9c20a {
    padding: 32px 0px !important;
  } */

  .grid-item {
    opacity: 1 !important;
  }

  .system-node.jsx-e1647ac9f896402d {
    transform: inherit !important;
  }

  /* .integration-hub {
    width: 400px !important;
  } */

  .graphic-section-grid .graphic-section-image > div > div.jsx-332c5544a1f9aeb > div {
    width: 100% !important;
  }

  .py-28.bg-gray-50 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  } 

  header.text-center.mb-16 {
    position: relative  !important;
  }

  section .masonry-grid {
    display: block;
  }
   section .masonry-grid article {
    margin-bottom: 20px;
   }

   .image-section-grid .content-graphic.jsx-e31cef2987abe875 > div.jsx-e31cef2987abe875 {
    aspect-ratio: 0 !important;
   }

   .bento-item {
    opacity: 1 !important;
   }

   /* custom style*/
  .section-ai-engines-title section:nth-child(2) .graphic-section-image aside > div:first-child > div:last-child {
    top: 15% !important;
    left: 15% !important;
  }
   .section-ai-engines-title section:nth-child(5) .graphic-section-image aside > div:first-child > div:last-child {
  top: 0% !important;
    left: 0% !important;
  }

  /* .section-learning-wrapper {
    height: 100vh;
  } */
  .section-transform-wrapper {
    background : #fff !important;
    box-shadow : 0 0 0 !important;
  }

  .graphic-section-image.content-graphic {
    margin-top: 30px;
  }

  /* Typography */
  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.125rem !important;
  }

  h4 {
    font-size: 1rem !important;
  }

  p {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  /* Hide all abstract shapes on small mobile */
  .abstract-shape-1,
  .abstract-shape-2,
  .abstract-shape-industry,
  .abstract-shape-industry-2,
  .abstract-shape-industry-3 {
    display: none !important;
  }

  /* Disable all scroll animations on small screens */
  * {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .section-aiengine-wrapper .polygon-img {
        transform: translate(-50%, -50%) !important;
  }

  /* Re-enable essential animations */
  .logo-scroll {
    animation: logoScroll 30s linear infinite !important;
  }

  .animate-in {
    animation: fadeInScale 0.3s ease-out forwards !important;
  }

  /* Hide floating dots completely */
  .floating-dots-container,
  .floating-dot-bottom {
    display: none !important;
  }

  /* Buttons */
  .gradient-btn-primary,
  .hero-btn-glass,
  .hero-btn-fill {
    padding: 10px 18px !important;
    font-size: 0.875rem !important;
  }

  /* Simplify hover effects */
  .solution-card:hover,
  .office-card:hover,
  .blog-card:hover {
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  }

  .wave-bottom {
    display: none !important;
  }

  /* Footer */
  .footer-section {
    padding: 0px 20px !important;
    margin-bottom: 0 !important;
  }

  .social-link {
    padding: 6px !important;
  }

  /* Nav dropdown spacing */
  .nav-dropdown {
    padding: 16px 6px !important;
  }


  /* Custom style*/
  .home-section2-wrapper ,
  .home-section2-subtitle-wrapper {
    padding: 5px !important;
  }

  .home-section2-subtitle ,
  .home-section2-title {
    font-size: 0.675rem !important;
  }

  .home-section2-dec {
    display:block !important;
  }

  .home-section2-dec-left ,
  .home-section2-dec-right ,
  .home-section2-dec-left svg,
  .home-section2-dec-right svg {
      width: 45px !important;
      height: 45px !important;
      margin: 0 auto;
  }
  .home-section2-dec-left {
    margin-bottom: 5px;
  }
  .home-section2-coumn4-wrapper {
    display: block !important;
  }
  .home-section2-coumn4-wrapper > div {
    width: 46% !important;
    display: inline-block;
  }
  .home-section2-coumn4-wrapper > div:nth-child(1),
  .home-section2-coumn4-wrapper > div:nth-child(3) {
    margin-right: 8%;
  }

  .home-section2-coumn4-wrapper .min-h-40    {
      min-height: 2.1rem;
  }
  
  #sales-dashboard-02 {
    padding: 0 !important;
  }

  /**/
  .section-allow-wrapper {
    min-width: 100% !important;
    height: 100% !important;
  }
}
nav li > button.text-sm {
  font-size: 1.0500rem !important;
}
nav > li > .rounded-lg p.text-xs {
  line-height: 20px;
}
nav li .text-xs {
    font-size: 0.9rem !important;
}
nav li .text-sm {
    font-size: 0.9rem !important;
}


main .hero-section div .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.color-blue {
  background: white;
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Mobile - Extra Small (< 480px) */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .section-home-title .integrated-data-section .graphic-section-container ,
  .section-ai-integration-platform-as-a-service-title .integrated-data-section .graphic-section-container   {
    padding: 32px 0px !important;
  }

  .section-home-title  .content-article.jsx-8c2552f8a190b3da .jsx-8c2552f8a190b3da {
    text-align: left !important;
  }

  .section-home-title  .integrated-data-section .graphic-section-image .graphic-wrapper {
    /* overflow: hidden; */
  border-radius: 10px;
  }

  .section-ai-people-experience-platform-title section  .graphic-section-container.jsx-d4c0cb24769cf329 {
    padding: 32px 0px !important;
  }
  .section-ai-people-experience-platform-title section .content-article.jsx-d4c0cb24769cf329 {
    margin-bottom: 30px;
  }
  .section-ai-healthcare-automation-and-analytics-title section:nth-child(2) article {
    margin-bottom: 30px;
  }

  .content-graphic.graphic-section-animated .graphic-wrapper .graphic-visible {
    padding: 28px 0px !important;
  }

  .security-feature.feature-1,
  .security-feature.feature-3 {
    left: 2% !important;
  }
  .security-feature.feature-2 ,
  .security-feature.feature-4 {
    right: 2% !important;
  }

  .healthcare-operations-container {
    padding: 0 !important;
  }

  .section-ai-financial-intelligence-and-risk-analytics-title .financial-business-impact-graphic .graphic-center-icon{
    top: 15% !important;
    left: 15% !important;
  }

  .section-ai-financial-intelligence-and-risk-analytics-title section:nth-child(5) {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .badge {
    min-height: 24px;
  }
  .section-ai-strategy-roadmaps-and-transformation-title section .ai-strategy-what-it-is-graphic {
    margin-top: 150px !important;
  }

  main div .gradient-text ,
  main section .gradient-text   {
    background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  main .hero-section div .gradient-text {
    /* background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%) !important; */
     -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .section-integrationservice-wrapper ,
  .section-strategysecurity-wrapper {
    margin-top: 100px !important;
  }
  

  main section.faq-section > div ,
  main section.jsx-70ebeb7525855c3a>div.jsx-70ebeb7525855c3a ,
   main section.jsx-44f2b24cfbcd243e>div.jsx-44f2b24cfbcd243e {
    padding: 32px 0px !important;
  }

  section.client-success.jsx-3b2e02df0738eb59 > div.jsx-3b2e02df0738eb59 {
   padding: 32px 0px 0!important;
  }

  #showcaseCard .jsx-3b2e02df0738eb59:first-child > .jsx-3b2e02df0738eb59:first-child ,
  #dotNavigation ,
  .logo-showcase-container  {
    display: none !important;
  }

  #flowDiagramContent {
    width: 90%;
    margin: 0 auto;
  }

  .hero-section aside > div:last-child > div:nth-child(2) > div {
    padding: 5px !important;
  }

  section .graphic-section-image.content-graphic {
    margin-top: 0px;
  }


  /* .content-graphic aside > div {
    width: 94% !important;
    margin: 0 auto;
    min-width: 90%;
  } */

  .jsx-c41143b130b9c20a.cta-buttons-container {
    margin:0  auto;
  }

  .graphic-section-image.content-graphic aside > div:last-child > div:last-child > div:last-child > div:first-child {
    display: block !important; 
  }
  .graphic-section-image.content-graphic aside > div:last-child > div:last-child > div:last-child > div:first-child > div {
    margin-bottom: 20px;
  }

  .section-ai-low-code-platform-title section:nth-child(2) > div > div > div > div  {
    overflow: scroll !important;
    display: block !important;
  }
   /* .section-ai-low-code-platform-title section:nth-child(2) aside {
      height: 650px !important;
  } */

  .section-business-wrapper {
    height: auto !important;
    display: block !important;
  }

  .section-business-wrapper > div {
    margin-bottom: 10px;
  }

  .jsx-3b2e02df0738eb59.gradient-btn-primary {
    margin:  0 auto;
  }

  .feature-card.card-1 {
    padding: 8px !important;
  }

  .client-showcase-container article div {
    margin: 0 auto; 
  }
  /* Standard mobile padding: 20px left and right */
  .container,
  section > div,
  .image-section-container,
  .studio-section,
  main > div,
  article > div {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-section .container  {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  /* .hero-section .container  > div {
    display: block !important;
  } */
  .hero-section .container  > div > div{
   margin-bottom: 20px;   
  }

   .hero-section .container aside {
    padding: 5px !important;
    height: auto !important;
   }

  /* Typography */
  h2 {
    font-size: 1.375rem !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  h4 {
    font-size: 0.9375rem !important;
  }

  p {
    font-size: 0.8125rem;
  }

  /* Buttons */
  .gradient-btn-primary,
  .hero-btn-glass,
  .hero-btn-fill {
    padding: 9px 16px !important;
    font-size: 0.8125rem !important;
  }

  /* Reduce all spacing */
  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Footer */
  .footer-section {
    padding: 24px 16px !important;
  }

  .footer-nav-link {
    font-size: 0.8125rem;
    padding: 3px 0 !important;
  }

  .legal-link {
    font-size: 0.75rem;
  }

  /* Certification badges */
  .certifications-highlight {
    padding: 10px !important;
    font-size: 0.8125rem !important;
  }

  .certifications-badge {
    font-size: 10px !important;
    padding: 2px 5px !important;
  }

  /* Nav adjustments */
  .nav-dropdown {
    padding: 12px 4px !important;
  }

  /* Simplify all effects for performance */
  .shine-effect::before,
  .btn-glass::before,
  .gradient-btn-primary::before {
    display: none !important;
  }

  /* Logo grid adjustments */
  .logo-column {
    gap: 0.75rem !important;
  }

  
}

/* ============================================ */
/* MOBILE MENU STYLES                          */
/* ============================================ */

/* Force desktop navigation to hide on mobile */
@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-hamburger {
    display: flex !important;
    position: relative;
    z-index: 100;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-hamburger span {
    background-color: #2A2D9F !important;
    height: 3px !important;
  }

  /* Ensure main content is scrollable when menu is closed */
  body:not(.mobile-menu-open) {
    overflow-y: auto !important;
    position: relative;
  }

  /* Ensure page content is visible and not blocked */
  main, .main-content, #__next > div {
    position: relative;
    z-index: 1;
  }
}

/* Force hamburger to hide on desktop */
@media (min-width: 768px) {
  .mobile-hamburger {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }

  .mobile-menu-container {
    display: none !important;
  }


  .content-article ul li.feature-item-mobile-left {
    text-align: left !important;
  }
  
}



/* Mobile menu container */
.mobile-menu-container {
  background: white;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile menu item button */
.mobile-menu-item-button {
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 600;
  color: #2A2D9F;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: left;
}

.mobile-menu-item-button:hover,
.mobile-menu-item-button.expanded {
  background: #f4f4ff;
  color: #2A2D9F;
  border-color: #2A2D9F;
}

.mobile-menu-item-button svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: #2A2D9F;
}

.mobile-menu-item-button.expanded svg {
  transform: rotate(180deg);
}

/* Mobile submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  padding-left: 8px;
  margin-top: 4px;
}

.mobile-submenu.expanded {
  max-height: 2000px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.mobile-submenu li {
  list-style: none;
  margin-bottom: 4px;
}

.mobile-submenu a,
.mobile-submenu-link {
  display: block !important;
  padding: 12px 16px;
  font-size: 14px;
  color: #4b5563;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
  background: #f9fafb;
}

.mobile-submenu a:hover,
.mobile-submenu-link:hover {
  background: #e0e7ff;
  color: #2A2D9F;
  border-left-color: #2A2D9F;
}

.mobile-submenu-description {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
  font-weight: 400;
  line-height: 1.4;
}

/* Mobile AI Assessment button */
.mobile-ai-assessment {
  display: block;
  width: 100%;
  padding: 12px 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  text-align: center;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-ai-assessment:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#logoGrid > div:last-child {
  display: none !important;
}
#logoGrid > div > div {
    border: 0px solid #fff !important;
    box-shadow: 0 0 0 !important;
}

/* ============================================ */
/* GRAPHIC SECTION RESPONSIVE HANDLING         */
/* ============================================ */

/* Hide bottom sections of graphics when container height is too constrained to prevent cut-off/congested appearance */
.section-infrastructure-wrapper {
  /* container-type: size; */
  container-name: graphic-container;
}

/* Hide bottom sections when container height is less than 600px */
@container graphic-container (max-height: 600px) {
  .architecture-bottom-row,
  .dis-block {
    display: none !important;
  }
}

/* For browsers that don't support container queries, use a fallback with max-height media query */
@supports not (container-type: size) {
  @media (max-height: 800px) {
    .section-infrastructure-wrapper[style*="height"] .architecture-bottom-row,
    .section-infrastructure-wrapper[style*="height"] .dis-block {
      display: none !important;
    }
  }
}

/* ============================================ */
/* GRAPHIC SECTION SCROLL ANIMATIONS           */
/* ============================================ */

/* Override global animation disable for graphic sections */
.graphic-section-animated,
.graphic-section-animated * {
  animation: unset !important;
  transition: unset !important;
  opacity: unset !important;
  transform: unset !important;
}

/* Core Capabilities - Smooth fade and scale */
.graphic-animate-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 1s ease-in-out !important;
}

.graphic-animate-scale.graphic-visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Architecture - Smooth slide up */
.graphic-animate-slide {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-in-out !important;
}

.graphic-animate-slide.graphic-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Security - Smooth fade in */
.graphic-animate-bounce {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: all 1s ease-in-out !important;
}

.graphic-animate-bounce.graphic-visible {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
}

/* Add subtle glow effect on visibility */
.graphic-visible .section-infrastructure-wrapper {
  animation: graphicGlowPulse 1.5s ease-in-out !important;
}

@keyframes graphicGlowPulse {
  0% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 3px rgba(255, 255, 255, 0.5);
  }
}

.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}

.hover\:-translate-y-1:hover {
  --tw-translate-y: -0.25rem;
  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));
}

.hover\:-translate-y-2:hover {
  --tw-translate-y: -0.5rem;
  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));
}

.hover\:translate-x-\[2px\]:hover {
  --tw-translate-x: 2px;
  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));
}

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  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));
}

.hover\:scale-110:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  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));
}

.hover\:scale-\[1\.02\]:hover {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  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));
}

.hover\:gap-3:hover {
  gap: 0.75rem;
}

.hover\:border-indigo-400:hover {
  --tw-border-opacity: 1;
  border-color: rgb(129 140 248 / var(--tw-border-opacity, 1));
}

.hover\:bg-\[\#2A2D9F\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(42 45 159 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[\#5356D2\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(83 86 210 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[rgb\(244\2c 244\2c 255\)\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-\[rgb\(248\2c 248\2c 255\)\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(248 248 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-anubavam-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(83 86 210 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
}

.hover\:bg-blue-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(30 64 175 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-green-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1));
}

.hover\:bg-indigo-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-indigo-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(238 242 255 / var(--tw-bg-opacity, 1));
}

.hover\:bg-indigo-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(67 56 202 / var(--tw-bg-opacity, 1));
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

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

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

.hover\:bg-yellow-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
}

.hover\:from-blue-700:hover {
  --tw-gradient-from: #1d4ed8 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(29 78 216 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.hover\:to-blue-800:hover {
  --tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}

.hover\:text-\[\#2A2D9F\]:hover {
  --tw-text-opacity: 1;
  color: rgb(42 45 159 / var(--tw-text-opacity, 1));
}

.hover\:text-\[\#5356D2\]:hover {
  --tw-text-opacity: 1;
  color: rgb(83 86 210 / var(--tw-text-opacity, 1));
}

.hover\:text-black:hover {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}

.hover\:text-gray-300:hover {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

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

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:shadow-2xl:hover {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:grayscale-0:hover {
  --tw-grayscale: grayscale(0);
  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);
}

.hover\:\[animation-play-state\:paused\]:hover {
  animation-play-state: paused;
}

.focus\:border-indigo-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(99 102 241 / var(--tw-border-opacity, 1));
}

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

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-\[\#5356D2\]:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(83 86 210 / var(--tw-ring-opacity, 1));
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-yellow-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(234 179 8 / var(--tw-ring-opacity, 1));
}

.active\:cursor-grabbing:active {
  cursor: grabbing;
}

.active\:bg-gray-200:active {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}

.active\:text-gray-500:active {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.disabled\:opacity-60:disabled {
  opacity: 0.6;
}

.group:hover .group-hover\:-translate-x-1 {
  --tw-translate-x: -0.25rem;
  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));
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  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));
}

.group:hover .group-hover\:text-\[\#2A2D9F\] {
  --tw-text-opacity: 1;
  color: rgb(42 45 159 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:text-indigo-700 {
  --tw-text-opacity: 1;
  color: rgb(67 56 202 / var(--tw-text-opacity, 1));
}

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

.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

@media (min-width: 481px) {

  .min-\[481px\]\:h-48 {
    height: 12rem;
  }
}

@media (min-width: 640px) {

  .sm\:left-4 {
    left: 1rem;
  }

  .sm\:right-4 {
    right: 1rem;
  }

  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .sm\:col-span-6 {
    grid-column: span 6 / span 6;
  }

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

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

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

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

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

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

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

  .sm\:mt-6 {
    margin-top: 1.5rem;
  }

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

  .sm\:h-10 {
    height: 2.5rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-8 {
    height: 2rem;
  }

  .sm\:w-10 {
    width: 2.5rem;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:w-8 {
    width: 2rem;
  }

  .sm\:w-\[160px\] {
    width: 160px;
  }

  .sm\:w-auto {
    width: auto;
  }

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

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

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:gap-12 {
    gap: 3rem;
  }

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

  .sm\:gap-6 {
    gap: 1.5rem;
  }

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

  .sm\:p-4 {
    padding: 1rem;
  }

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

  .sm\:p-8 {
    padding: 2rem;
  }

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

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

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

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

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

  .sm\:text-right {
    text-align: right;
  }

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

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

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

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

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

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

@media (min-width: 768px) {

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

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

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

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

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:w-\[180px\] {
    width: 180px;
  }

  .md\:w-full {
    width: 100%;
  }

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

  .md\:max-w-full {
    max-width: 100%;
  }

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

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

  .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\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

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

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

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

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

  .md\:p-8 {
    padding: 2rem;
  }

  .md\:px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

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

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

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

  .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-\[1\.125rem\] {
    font-size: 1.125rem;
  }

  .md\:text-\[2rem\] {
    font-size: 2rem;
  }

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

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

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

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

@media (min-width: 1024px) {

  .lg\:left-8 {
    left: 2rem;
  }

  .lg\:right-8 {
    right: 2rem;
  }

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

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

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

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

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

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

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

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:w-12 {
    width: 3rem;
  }

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

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

  .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\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-16 {
    gap: 4rem;
  }

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

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

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

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

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

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

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

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

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

@media (min-width: 1280px) {

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

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

  .xl\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

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

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


/*!************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./public/css/header-menu.css ***!
  \************************************************************************************************************************************************************************************************************************************************************************/
/* Header & Navigation Styles - Anubavam */

:root {
    --anubavam-primary: #2A2D9F;
    --anubavam-secondary: #5356D2;
    --anubavam-tertiary: #9092E2;
}

/* Override gap for header navigation items */
header .gap-1 {
    gap: 0 !important;
}

header .flex.items-center {
    gap: 0.5rem !important;
}

header .flex.items-center.gap-1 {
    gap: 0 !important;
}

/* Default: all nav dropdowns have reduced padding */
.nav-dropdown {
    padding: 0px 15px;
    transition: padding 0.2s ease;
}

/* When ANY nav-dropdown is hovered, first set all to 0px */
nav:has(.nav-dropdown:hover) .nav-dropdown {
    padding: 0px 15px;
}

/* Then give the actually hovered one full padding */
.nav-dropdown:hover {
    padding: 33px 15px !important;
}

.nav-dropdown:hover > .nav-link {
    background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-color: rgba(42, 45, 159, 0.1);
    border-radius: 8px;
    position: relative;
}

.nav-dropdown:hover > .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(244 244 255);
    border-radius: 8px;
    padding: 0px 0px 0px 9px;
    z-index: -1;
}

.global-dropdown-container {
    position: fixed;
    left: 0;
    right: 0;
    width: 100vw;
    top: 0;
    background: transparent;
    height: 0;
    overflow: visible;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding-top: 80px;
    pointer-events: none;
}

.global-dropdown-container > * {
    pointer-events: auto;
}

.dropdown-content {
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(229, 231, 235, 0.2);
    border-bottom: 2px solid rgba(42, 45, 159, 0.1);
    padding-top: 8px !important;
    box-shadow: none !important;
}

.pt-2 {
    padding-top: 0rem !important;
}

.gap-10 {
    gap: 8.5rem !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.dropdown-panel {
    display: block;
    opacity: 1;
    transform: none;
    padding-top: 8px;
}

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

.nav-item {
    opacity: 0;
    transform: translateY(20px);
    animation: none;
}

.nav-item.animate {
    animation: slideInUp 0.5s ease-out forwards;
}

.nav-item.animate:nth-child(1) { animation-delay: 0.1s; }
.nav-item.animate:nth-child(2) { animation-delay: 0.2s; }
.nav-item.animate:nth-child(3) { animation-delay: 0.3s; }
.nav-item.animate:nth-child(4) { animation-delay: 0.4s; }

.nav-menu-item {
    transition: all 0.15s ease;
    border-radius: 6px;
    padding: 8px 0px;
    position: relative;
}

.nav-menu-item:hover {
    background: transparent !important;
    transform: translateX(2px);
}

/* Arrow indicator on hover - dropdown menu items */
li:hover > a.block .text-blue-700 {
    background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

li:hover > a.block .text-blue-700::after {
    content: ' →';
    background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    opacity: 1;
    margin-left: 4px;
    transition: all 0.2s ease;
}

li:hover > a.block .text-gray-600 {
    color: #4b5563;
    transition: color 0.2s ease;
}

li > a.block .text-blue-700 {
    position: relative;
    display: inline;
}

li > a.block .text-blue-700::after {
    content: ' →';
    opacity: 0;
    margin-left: 0px;
    transition: all 0.2s ease;
}

li > a.block .text-gray-600 {
    transition: color 0.2s ease;
}

.gradient-text {
    background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary), var(--anubavam-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-blue-600 { color: var(--anubavam-primary) !important; }
.text-blue-700 { color: var(--anubavam-primary) !important; }
.text-blue-800 { color: var(--anubavam-primary) !important; }
.hover\:text-blue-600:hover { color: var(--anubavam-primary) !important; }
.hover\:text-blue-800:hover { color: var(--anubavam-primary) !important; }
.bg-blue-600 { background-color: var(--anubavam-primary) !important; }
.from-blue-600 { --tw-gradient-from: var(--anubavam-primary) !important; }
.to-purple-600 { --tw-gradient-to: var(--anubavam-tertiary) !important; }

.font-medium.text-blue-700.text-base {
    font-weight: 600 !important;
}

.menu-title {
    font-weight: 600;
    color: var(--anubavam-primary);
    font-size: 1rem;
    line-height: 1.25rem;
}

.menu-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    margin-top: 0.25rem;
}

@media (max-width: 1023px) {
    .global-dropdown-container {
        display: none;
    }

    /* Ensure logo remains visible */
    header > div > a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    header img {
        display: block !important;
        visibility: visible !important;
    }
}

/* Mobile Menu Responsive Styles */
@media (max-width: 768px) {
    /* Header adjustments for mobile */
    header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    header > div {
        height: 64px !important;
        padding: 12px 16px !important;
    }

    /* Logo size adjustment */
    header img {
        width: 120px !important;
        height: auto !important;
    }

    /* Mobile menu button */
    header button.md\:hidden {
        padding: 8px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }

    header button.md\:hidden:hover {
        background-color: rgba(42, 45, 159, 0.05);
    }

    header button.md\:hidden svg {
        width: 28px;
        height: 28px;
        color: var(--anubavam-primary);
    }

    /* Mobile menu container */
    .mobile-menu-container {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        overflow-y: auto;
        z-index: 999;
        animation: slideInFromTop 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

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

    /* Mobile menu items */
    .mobile-menu-container ul {
        padding: 16px !important;
    }

    .mobile-menu-container > ul > li {
        border-bottom: 1px solid #f3f4f6;
        padding: 0 !important;
    }

    .mobile-menu-container > ul > li:last-child {
        border-bottom: none;
    }

    /* Main menu item link/button */
    .mobile-menu-item-button {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 16px 12px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        background: transparent;
        border: none;
        text-align: left;
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 8px;
    }

    .mobile-menu-item-button:active {
        background-color: rgba(42, 45, 159, 0.05);
    }

    .mobile-menu-item-button svg {
        width: 20px;
        height: 20px;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--anubavam-primary);
    }

    .mobile-menu-item-button.expanded svg {
        transform: rotate(180deg);
    }

    /* Submenu container */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: #f9fafb;
        border-radius: 8px;
        margin: 0 8px 8px 8px;
    }

    .mobile-submenu.expanded {
        max-height: 2000px;
        padding: 8px 0;
    }

    /* Submenu items */
    .mobile-submenu li {
        padding: 0 !important;
        border: none !important;
    }

    .mobile-submenu a {
        display: block;
        padding: 12px 16px !important;
        font-size: 14px !important;
        color: #4b5563 !important;
        text-decoration: none;
        transition: all 0.2s ease;
        border-radius: 6px;
        margin: 4px 8px;
    }

    .mobile-submenu a:active {
        background-color: rgba(42, 45, 159, 0.08);
        color: var(--anubavam-primary) !important;
    }

    /* AI Assessment button in mobile menu */
    .mobile-menu-container .mobile-ai-assessment {
        display: block !important;
        margin: 16px 12px !important;
        padding: 14px 24px !important;
        text-align: center;
        background: linear-gradient(135deg, var(--anubavam-primary), var(--anubavam-secondary)) !important;
        color: white !important;
        border-radius: 8px;
        font-weight: 600 !important;
        font-size: 16px !important;
        box-shadow: 0 4px 6px -1px rgba(42, 45, 159, 0.3);
        transition: all 0.2s ease;
    }

    .mobile-menu-container .mobile-ai-assessment:active {
        transform: scale(0.98);
        box-shadow: 0 2px 4px -1px rgba(42, 45, 159, 0.3);
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1023px) {
    header > div {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    .mobile-menu-container {
        top: 96px;
    }

    .mobile-menu-item-button {
        font-size: 18px !important;
        padding: 18px 16px !important;
    }

    .mobile-submenu a {
        font-size: 15px !important;
        padding: 14px 20px !important;
    }
}

