@import"https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap";

:root {
    --primaryColor: #12121A; /* Dark base for contrast */
    --secondaryColor: #F6C700; /* Vibrant golden yellow */
    --tertiaryColor: #C9A300; /* Soft glowing yellow */
    --quaColor: #DCB200; /* Aura-inspired golden tone */
}
*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

button:focus {
    outline: none
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "Inter";
    transition: all 0.1s linear;
    background-color: var(--primaryColor)
}

img {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none
}

a:hover {
    text-decoration: none;
    color: unset !important
}

br {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media only screen and (min-width: 640px) {
    .section {
        padding-top: 3%;
        padding-bottom: 3%
    }
    .blackText {
        font-size: 55px
    }
    .sectionGrid {
        display: grid;
        align-items:center;
        grid-template-columns: auto auto;
        grid-gap: 6%;
    }

    .sectionGridItemRight {
        justify-self: end
    }
}

@media only screen and (max-width: 640px) {
    .section {
        padding-top: 4rem;
        padding-bottom: 4rem
    }
    .blackText {
        font-size: 40px
    }
    .sectionGridItemRight {
        padding-top: 1em
    }
    .sidebar {
        background-color: var(--primaryColor)
    }
}

nav {
    /*background-color: var(--primaryColor);*/
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px)
}

.blackText {
    font-weight: 800;
    line-height: 1.2em
}

.extraBoldText {
    font-weight: 800;
    font-size: 35px
}

.boldText {
    font-weight: 500;
    font-size: 25px
}

.regularTextBold {
    font-weight: 600;
    font-size: 23px
}

.regularTextIta {
    font-weight: 400;
    font-size: 20px
}

.regularText {
    font-weight: 500;
    font-size: 20px
}

.normalTextBold {
    font-weight: 600;
    font-size: 16px
}

.normalText {
    font-weight: 500;
    font-size: 16px
}

.smallTextBold {
    font-weight: 600;
    font-size: 16px
}

.smallText {
    font-weight: 400;
    font-size: 16px
}

.gradientBg {
    background-image: linear-gradient(to right, var(--secondaryColor) , var(--tertiaryColor))
}

.blackBg {
    background-color: #000;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear
}

.secBg {
    background-color: transparent;
    transition: all 0.3s linear
}

.secBg:hover {
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear
}

.blackBg:hover {
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear
}

.coloredBg:hover {
    background-color: var(--secondaryColor)
}

.gradientColor {
    background: linear-gradient(to right, var(--secondaryColor) , var(--tertiaryColor));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.gradientUnderlineWH {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: var(--secondaryColor)
}

.gradientUnderline:hover {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: var(--secondaryColor)
}

.whiteUnderline:hover {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: white
}

.customHr {
    border: 1px solid var(--quaColor);
    opacity: 70%
}

.card {
    border-top: 1px solid var(--quaColor)
}

.cardWBg {
    background-color: #2c2c30;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1)
}

.sidebar {
    border-right: 1px solid var(--quaColor)
}

.blackBgActive {
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear;
    color: #000
}

.blackBgActive {
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s linear
}


html {
  scrollbar-face-color: #646464;
  scrollbar-base-color: #646464;
  scrollbar-3dlight-color: #646464;
  scrollbar-highlight-color: #646464;
  scrollbar-track-color: #000;
  scrollbar-arrow-color: #000;
  scrollbar-shadow-color: #646464;
  scrollbar-dark-shadow-color: #646464;
}

::-webkit-scrollbar { width: 8px; height: 3px;}
::-webkit-scrollbar-button {  background-color: #666; }
::-webkit-scrollbar-track {  background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #646464;}}
::-webkit-resizer { background-color: #666;}



/* Disables Selecting and Dragging */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    user-drag: none;
}


/* CSS Animations */

/* Hover Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@charset "UTF-8";
*,
:after,
:before {
    --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: rgba(59, 130, 246, .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: rgba(59, 130, 246, .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.15 | MIT License | https://tailwindcss.com
*/

*,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb
}

:after,
:before {
    --tw-content: ""
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    line-height: inherit
}

hr {
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit
}

a {
    color: inherit;
    text-decoration: inherit
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    padding: 0
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0
}

fieldset,
menu,
ol,
ul {
    margin: 0;
    padding: 0
}

menu,
ol,
ul {
    list-style: none
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

[role=button],
button {
    cursor: pointer
}

:disabled {
    cursor: default
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    display: block;
    vertical-align: middle
}

img,
video {
    max-width: 100%;
    height: auto
}

[hidden]:where(:not([hidden=until-found])) {
    display: none
}

.container {
    width: 100%
}

@media (min-width:640px) {
    .container {
        max-width: 640px
    }
}

@media (min-width:768px) {
    .container {
        max-width: 768px
    }
}

@media (min-width:1024px) {
    .container {
        max-width: 1024px
    }
}

@media (min-width:1280px) {
    .container {
        max-width: 1280px
    }
}

@media (min-width:1536px) {
    .container {
        max-width: 1536px
    }
}

.visible {
    visibility: visible
}

.invisible {
    visibility: hidden
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.isolate {
    isolation: isolate
}

.m-auto {
    margin: auto
}

.mx-1 {
    margin-left: .25rem;
    margin-right: .25rem
}

.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-20 {
    margin-bottom: 5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.ml-0 {
    margin-left: 0
}

.mr-0 {
    margin-right: 0
}

.mr-4 {
    margin-right: 1rem
}

.ms-1 {
    margin-inline-start: .25rem
}

.ms-2 {
    margin-inline-start: .5rem
}

.ms-3 {
    margin-inline-start: .75rem
}

.mt-10 {
    margin-top: 2.5rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-20 {
    margin-top: 5rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.grid {
    display: grid
}

.contents {
    display: contents
}

.w-40 {
    width: 10rem
}

.w-60 {
    width: 15rem
}

.flex-1 {
    flex: 1 1 0%
}

.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))
}

.resize {
    resize: both
}

.flex-row {
    flex-direction: row
}

.flex-wrap {
    flex-wrap: wrap
}

.items-center {
    align-items: center
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.overflow-auto {
    overflow: auto
}

.rounded-lg {
    border-radius: .5rem
}

.border {
    border-width: 1px
}

.border-dashed {
    border-style: dashed
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175/var(--tw-border-opacity, 1))
}

.p-0 {
    padding: 0
}

.p-2 {
    padding: .5rem
}

.p-4 {
    padding: 1rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.py-1\.5 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.pb-20 {
    padding-bottom: 5rem
}

.pb-3 {
    padding-bottom: .75rem
}

.pl-0 {
    padding-left: 0
}

.pr-0 {
    padding-right: 0
}

.pt-0 {
    padding-top: 0
}

.pt-1 {
    padding-top: .25rem
}

.pt-20 {
    padding-top: 5rem
}

.pt-3 {
    padding-top: .75rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-5 {
    padding-top: 1.25rem
}

.text-center {
    text-align: center
}

.text-right {
    text-align: right
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(191 219 254/var(--tw-text-opacity, 1))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175/var(--tw-text-opacity, 1))
}

.underline {
    text-decoration-line: underline
}

.decoration-dashed {
    text-decoration-style: dashed
}

.underline-offset-4 {
    text-underline-offset: 4px
}

.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)
}

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
    }

.tw-btn {
    border-width: 0;
    --tw-bg-opacity: 1;
    background-color: rgb(41 41 48/var(--tw-bg-opacity));
    padding: .75rem 1.25rem;
    text-align: center;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    animation-duration: .2s;
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    border-radius: 5px
}

.tw-btn:first-letter {
    text-transform: uppercase
}

.tw-btn:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(57 57 67/var(--tw-bg-opacity))
}

.tw-btn-primary {
    border-width: 0;
    background-color: rgb(41 41 48/var(--tw-bg-opacity));
    padding: .75rem 1.25rem;
    text-align: center;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    animation-duration: .2s;
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    border-radius: 5px
}

.tw-btn-primary:first-letter {
    text-transform: uppercase
}

.tw-btn-primary:hover {
    background-color: rgb(57 57 67/var(--tw-bg-opacity))
}

.tw-btn-primary {
    --tw-bg-opacity: 1;
    background-color: rgb(88 101 242/var(--tw-bg-opacity))
}

.tw-btn-primary:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(52 64 153/var(--tw-bg-opacity))
}

.tw-btn-sec {
    border-width: 0;
    background-color: rgb(41 41 48/var(--tw-bg-opacity));
    padding: .75rem 1.25rem;
    text-align: center;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255/var(--tw-text-opacity));
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    animation-duration: .2s;
    animation-timing-function: cubic-bezier(.4, 0, .2, 1);
    border-radius: 5px
}

.tw-btn-sec:first-letter {
    text-transform: uppercase
}

.tw-btn-sec,
.tw-btn-sec:hover {
    background-color: rgb(57 57 67/var(--tw-bg-opacity))
}

.tw-btn-sec {
    --tw-bg-opacity: 1
}

.tw-btn-sec:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(67 67 80/var(--tw-bg-opacity))
}

.tw-double-input {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem
}

.tw-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.tw-btn-icon:disabled {
    opacity: .5
}

.tw-btn-icon:disabled:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(88 101 242/var(--tw-bg-opacity))
}



.-tw-space-x-1>:not([hidden])~:not([hidden]) {
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-.25rem * calc(1 - var(--tw-space-x-reverse))) !important
}

.tw-space-y-2>:not([hidden])~:not([hidden]) {
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(.5rem * var(--tw-space-y-reverse)) !important
}

.tw-overflow-hidden {
    overflow: hidden !important
}

.tw-overflow-clip {
    overflow: clip !important
}

.tw-overflow-visible {
    overflow: visible !important
}

.tw-overflow-y-auto {
    overflow-y: auto !important
}

.tw-overflow-x-hidden {
    overflow-x: hidden !important
}

.tw-rounded {
    border-radius: .25rem !important
}

.tw-rounded-2xl {
    border-radius: 1rem !important
}

.tw-rounded-\[6px\] {
    border-radius: 6px !important
}

.tw-rounded-\[8px\] {
    border-radius: 8px !important
}

.tw-rounded-full {
    border-radius: 9999px !important
}

.tw-rounded-lg {
    border-radius: .5rem !important
}

.tw-rounded-md {
    border-radius: .375rem !important
}

.tw-rounded-none {
    border-radius: 0 !important
}

.tw-rounded-sm {
    border-radius: .125rem !important
}

.tw-rounded-xl {
    border-radius: .75rem !important
}

.tw-rounded-ee-none {
    border-end-end-radius: 0 !important
}

.tw-rounded-es-none {
    border-end-start-radius: 0 !important
}

.tw-rounded-tl-2xl {
    border-top-left-radius: 1rem !important
}

.tw-rounded-tl-\[2px\] {
    border-top-left-radius: 2px !important
}

.tw-rounded-tr-2xl {
    border-top-right-radius: 1rem !important
}

.tw-border {
    border-width: 1px !important
}

.tw-border-0 {
    border-width: 0 !important
}

.tw-border-\[1px\] {
    border-width: 1px !important
}

.tw-border-\[2px\] {
    border-width: 2px !important
}

.tw-border-\[4px\] {
    border-width: 4px !important
}

.tw-border-x-0 {
    border-left-width: 0 !important;
    border-right-width: 0 !important
}

.tw-border-b {
    border-bottom-width: 1px !important
}

.tw-border-b-0 {
    border-bottom-width: 0 !important
}

.tw-border-b-2 {
    border-bottom-width: 2px !important
}

.tw-border-b-\[0px\] {
    border-bottom-width: 0 !important
}

.tw-border-l-0 {
    border-left-width: 0 !important
}

.tw-border-r-0 {
    border-right-width: 0 !important
}

.tw-border-t {
    border-top-width: 1px !important
}

.tw-border-t-0 {
    border-top-width: 0 !important
}

.tw-border-t-2 {
    border-top-width: 2px !important
}

.tw-border-solid {
    border-style: solid !important
}

.tw-border-none {
    border-style: none !important
}

.tw-border-\[\#1E1D2F\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(30 29 47/var(--tw-border-opacity)) !important
}

.tw-border-\[\#1E202C\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(30 32 44/var(--tw-border-opacity)) !important
}

.tw-border-\[\#272a37\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(39 42 55/var(--tw-border-opacity)) !important
}

.tw-border-\[\#434164\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(67 65 100/var(--tw-border-opacity)) !important
}

.tw-border-\[\#5F5DEF33\] {
    border-color: #5f5def33 !important
}

.tw-border-\[\#6965F5\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(105 101 245/var(--tw-border-opacity)) !important
}

.tw-border-\[\#9683FA\] {
    --tw-border-opacity: 1 !important;
    border-color: rgb(150 131 250/var(--tw-border-opacity)) !important
}

.tw-border-gray-400 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(130 134 153/var(--tw-border-opacity)) !important
}

.tw-border-gray-800 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(40 42 55/var(--tw-border-opacity)) !important
}

.tw-border-gray-820 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(28 29 38/var(--tw-border-opacity)) !important
}

.tw-border-gray-850 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(23 24 33/var(--tw-border-opacity)) !important
}

.tw-border-grey-1 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(67 67 80/var(--tw-border-opacity)) !important
}

.tw-border-grey-2 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(57 57 67/var(--tw-border-opacity)) !important
}

.tw-border-grey-text2 {
    --tw-border-opacity: 1 !important;
    border-color: rgb(146 146 160/var(--tw-border-opacity)) !important
}

.tw-border-transparent {
    border-color: transparent !important
}

.tw-border-t-gray-850 {
    --tw-border-opacity: 1 !important;
    border-top-color: rgb(23 24 33/var(--tw-border-opacity)) !important
}

.tw-bg-\[\#171821\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(23 24 33/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#1E202C\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(30 32 44/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#1a1b24\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(26 27 36/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#25252c\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(37 37 44/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#5753EC0A\] {
    background-color: #5753ec0a !important
}

.tw-bg-\[\#5753EC\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(87 83 236/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#605ceb\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(96 92 235/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#664eee\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(102 78 238/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#6c77ee\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(108 119 238/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#7E67FF\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(126 103 255/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#807EF3\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(128 126 243/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#8685FF\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(134 133 255/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#ED4C5C\] {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(237 76 92/var(--tw-bg-opacity)) !important
}

.tw-bg-\[\#ef67670f\] {
    background-color: #ef67670f !important
}

.tw-bg-\[\#ffffff14\] {
    background-color: #ffffff14 !important
}

.tw-bg-black\/75 {
    background-color: rgba(0, 0, 0, .75) !important
}

.tw-bg-gray-800 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(40 42 55/var(--tw-bg-opacity)) !important
}

.tw-bg-gray-820 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(28 29 38/var(--tw-bg-opacity)) !important
}

.tw-bg-gray-850 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(23 24 33/var(--tw-bg-opacity)) !important
}

.tw-bg-gray-900 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(18 19 26/var(--tw-bg-opacity)) !important
}

.tw-bg-gray-900\/0 {
    background-color: rgba(18, 19, 26, 0) !important
}

.tw-bg-gray-900\/90 {
    background-color: rgba(18, 19, 26, .9) !important
}

.tw-bg-grey-1 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(67 67 80/var(--tw-bg-opacity)) !important
}

.tw-bg-grey-2 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(57 57 67/var(--tw-bg-opacity)) !important
}

.tw-bg-grey-3 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(41 41 48/var(--tw-bg-opacity)) !important
}

.tw-bg-grey-4 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(31 31 37/var(--tw-bg-opacity)) !important
}

.tw-bg-grey-5 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(12 12 15/var(--tw-bg-opacity)) !important
}

.tw-bg-grey-text1\/20 {
    background-color: hsla(240, 5%, 46%, .2) !important
}

.tw-bg-purple-main {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(88 101 242/var(--tw-bg-opacity)) !important
}

.tw-bg-red-500 {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(239 68 68/var(--tw-bg-opacity)) !important
}

.tw-bg-transparent {
    background-color: transparent !important
}

.tw-bg-white {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(255 255 255/var(--tw-bg-opacity)) !important
}

.tw-bg-opacity-10 {
    --tw-bg-opacity: 0.1 !important
}

.tw-bg-none {
    background-image: none !important
    }


html {
    scroll-behavior: smooth
}


/* Card Styling */
.feature-card {
  background: rgba(36, 36, 51, 0.9); /* Slightly transparent */
  backdrop-filter: blur(10px); /* Blur Effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Soft Shadow */
  border-radius: 1rem; /* Rounded Corners */
  padding: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth Hover Effects */
}

.feature-card:hover {
  transform: translateY(-5px); /* Lift Effect */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); /* Stronger Shadow on Hover */
}

/* Text Styling */
.feature-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.feature-card ul {
  color: #d4d4d4;
  list-style-type: disc;
  padding-left: 1.5rem;
}

.feature-card ul li {
  margin-bottom: 0.5rem;
}



#features h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}


/* Card styling */
.card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid #2a2a38;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, #242433, #1a1a26);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card ul li {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.5;
}

.card ul li .gradientColor {
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive grid */
@media (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
