/* ==========================================================================
   NORMALIZE CSS - Browser Reset
   ========================================================================== */

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: #ffffff;
    color: #000000; /* Black text */
}

article, aside, footer, header, nav, section {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

figcaption, figure, main {
    display: block;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: inherit;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

button, input, optgroup, select, textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button {
    z-index: 500!important;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details, menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */

/* Box Model */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Body */
body {
    background: #ffffff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* Horizontal Rule */
hr {
    border: 0;
    display: block;
    height: 1px;
    background: #E2E8ED;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Lists */
ul, ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul, li > ol {
    margin-bottom: 0;
}

/* Definition Lists */
dl {
    margin-top: 0;
    margin-bottom: 24px;
}

dt {
    font-weight: 500;
}

dd {
    margin-left: 24px;
    margin-bottom: 24px;
}

/* Images */
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

figure {
    margin: 24px 0;
}

figcaption {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 0;
}

img, svg {
    display: block;
}

/* Tables */
table {
    border-collapse: collapse;
    margin-bottom: 24px;
    width: 100%;
}

tr {
    border-bottom: 1px solid #E2E8ED;
}

th {
    text-align: left;
}

th, td {
    padding: 10px 16px;
}

th:first-child, td:first-child {
    padding-left: 0;
}

th:last-child, td:last-child {
    padding-right: 0;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

/* Base Typography */
html {
    font-size: 18px;
    line-height: 27px;
}

@media (min-width: 641px) {
    html {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.1px;
    }
}

body {
    color: #1a1a1a;
    font-size: 1rem;
}

body, button, input, select, textarea {
    font-family: "Hind Vadodara", sans-serif;
}

/* Links */
a {
    color: inherit;
    text-decoration: underline;
}

.a-no-underline {
    text-decoration: none;
}

a:hover, a:active {
    outline: 0;
    text-decoration: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    clear: both;
    color: #000000;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
}

/* H1 */
h1, .h1 {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -0.1px;
}

@media (min-width: 641px) {
    h1, .h1 {
        font-size: 56px;
        line-height: 66px;
        letter-spacing: -0.1px;
    }
}

/* H2 */
h2, .h2 {
    font-size: 24px;
    line-height: 46px;
    letter-spacing: -0.1px;
}

@media (min-width: 641px) {
    h2, .h2 {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: -0.1px;
    }
}

/* H3 */
h3, .h3, blockquote {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.1px;
}

@media (min-width: 641px) {
    h3, .h3, blockquote {
        font-size: 36px;
        line-height: 46px;
        letter-spacing: -0.1px;
    }
}

/* H4, H5, H6 */
h4, h5, h6, .h4, .h5, .h6 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.1px;
}

@media (min-width: 641px) {
    h4, h5, h6, .h4, .h5, .h6 {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: -0.1px;
    }
}

/* Mobile Typography */
@media (max-width: 640px) {
    .h1-mobile {
        font-size: 42px;
        line-height: 52px;
        letter-spacing: -0.1px;
    }
    
    .h2-mobile {
        font-size: 36px;
        line-height: 46px;
        letter-spacing: -0.1px;
    }
    
    .h3-mobile {
        font-size: 24px;
        line-height: 34px;
        letter-spacing: -0.1px;
    }
    
    .h4-mobile, .h5-mobile, .h6-mobile {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.1px;
    }
}

/* Text Utilities */
.text-light {
    color: #6F8394;
}

.text-light a {
    color: #6F8394;
}

.text-light h1, .text-light h2, .text-light h3, .text-light h4, .text-light h5, .text-light h6,
.text-light .h1, .text-light .h2, .text-light .h3, .text-light .h4, .text-light .h5, .text-light .h6 {
    color: #000000 !important;
}

.text-sm {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.1px;
}

.text-xs {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
}

/* Spacing for Headings */
h1, h2, .h1, .h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

h3, .h3 {
    margin-top: 36px;
    margin-bottom: 12px;
}

h4, h5, h6, .h4, .h5, .h6 {
    margin-top: 24px;
    margin-bottom: 4px;
}

/* Paragraphs */
p {
    margin-top: 0;
    margin-bottom: 24px;
}

/* Text Formatting */
dfn, cite, em, i {
    font-style: italic;
}

blockquote {
    font-style: italic;
    margin-top: 24px;
    margin-bottom: 24px;
    margin-left: 24px;
}

blockquote::before {
    content: "\201C";
}

blockquote::after {
    content: "\201D";
}

blockquote p {
    display: inline;
}

address {
    color: #6F8394;
    border-width: 1px 0;
    border-style: solid;
    border-color: #E2E8ED;
    padding: 24px 0;
    margin: 0 0 24px;
}

/* Code */
pre, pre h1, pre h2, pre h3, pre h4, pre h5, pre h6,
pre .h1, pre .h2, pre .h3, pre .h4, pre .h5, pre .h6 {
    font-family: "Courier 10 Pitch", Courier, monospace;
}

pre, code, kbd, tt, var {
    background: #f5f5f5;
}

pre {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

code, kbd, tt, var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 16px;
    padding: 2px 4px;
}

abbr, acronym {
    cursor: help;
}

mark, ins {
    text-decoration: none;
}

small {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.1px;
}

b, strong {
    font-weight: 700;
}

button, input, select, textarea, label {
    font-size: 18px;
    line-height: 27px;
}

.center-quote {
    text-align: center;
    font-size: 120%;
    width: 65%;
    font-style: italic;
    color: #4e4e4e;
    padding-top: 28px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 641px) {
    .center-quote {
        width: 90%;
    }
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

.container, .container-sm {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 481px) {
    .container, .container-sm {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.container {
    max-width: 75%;
}
@media (max-width: 641px) {
    .container {
        max-width: 85%;
    }
}

.container-sm {
    max-width: 848px;
}

.container .container-sm {
    max-width: 800px;
    padding-left: 0;
    padding-right: 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    border-radius: 2px;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.6);
    clip: auto !important;
    display: block;
    font-size: 16px;
    letter-spacing: -0.1px;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: #fff;
    color: #0081F6 !important;
    border: none;
    height: auto;
    left: 8px;
    padding: 16px 32px;
    top: 8px;
    width: auto;
    z-index: 100000;
}

.list-reset {
    list-style: none;
    padding: 0;
}

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

.text-center {
    text-align: center;
}

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

.text-primary {
    color: #FC800B;
}

.text-secondary {
    color: #C131B7;
}

.has-top-divider {
    position: relative;
}

.has-top-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    height: 1px;
    background: linear-gradient(45deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
}

.has-bottom-divider {
    position: relative;
}

.has-bottom-divider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    height: 1px;
    background: linear-gradient(45deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
}

/* ==========================================================================
   SPACING UTILITIES
   ========================================================================== */

/* Margin Classes */
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mr-0 { margin-right: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }

.m-8 { margin: 8px; }
.mt-8 { margin-top: 8px; }
.mr-8 { margin-right: 8px; }
.mb-8 { margin-bottom: 8px; }
.ml-8 { margin-left: 8px; }

.m-16 { margin: 16px; }
.mt-16 { margin-top: 16px; }
.mr-16 { margin-right: 16px; }
.mb-16 { margin-bottom: 16px; }
.ml-16 { margin-left: 16px; }

.m-24 { margin: 24px; }
.mt-24 { margin-top: 24px; }
.mr-24 { margin-right: 24px; }
.mb-24 { margin-bottom: 24px; }
.ml-24 { margin-left: 24px; }

.m-32 { margin: 32px; }
.mt-32 { margin-top: 32px; }
.mr-32 { margin-right: 32px; }
.mb-32 { margin-bottom: 32px; }
.ml-32 { margin-left: 32px; }

.m-40 { margin: 40px; }
.mt-40 { margin-top: 40px; }
.mr-40 { margin-right: 40px; }
.mb-40 { margin-bottom: 40px; }
.ml-40 { margin-left: 40px; }

.m-48 { margin: 48px; }
.mt-48 { margin-top: 48px; }
.mr-48 { margin-right: 48px; }
.mb-48 { margin-bottom: 48px; }
.ml-48 { margin-left: 48px; }

.m-56 { margin: 56px; }
.mt-56 { margin-top: 56px; }
.mr-56 { margin-right: 56px; }
.mb-56 { margin-bottom: 56px; }
.ml-56 { margin-left: 56px; }

.m-64 { margin: 64px; }
.mt-64 { margin-top: 64px; }
.mr-64 { margin-right: 64px; }
.mb-64 { margin-bottom: 64px; }
.ml-64 { margin-left: 64px; }

/* Padding Classes */
.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pr-0 { padding-right: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }

.p-8 { padding: 8px; }
.pt-8 { padding-top: 8px; }
.pr-8 { padding-right: 8px; }
.pb-8 { padding-bottom: 8px; }
.pl-8 { padding-left: 8px; }

.p-16 { padding: 16px; }
.pt-16 { padding-top: 16px; }
.pr-16 { padding-right: 16px; }
.pb-16 { padding-bottom: 16px; }
.pl-16 { padding-left: 16px; }

.p-24 { padding: 24px; }
.pt-24 { padding-top: 24px; }
.pr-24 { padding-right: 24px; }
.pb-24 { padding-bottom: 24px; }
.pl-24 { padding-left: 24px; }

.p-32 { padding: 32px; }
.pt-32 { padding-top: 32px; }
.pr-32 { padding-right: 32px; }
.pb-32 { padding-bottom: 32px; }
.pl-32 { padding-left: 32px; }

.p-40 { padding: 40px; }
.pt-40 { padding-top: 40px; }
.pr-40 { padding-right: 40px; }
.pb-40 { padding-bottom: 40px; }
.pl-40 { padding-left: 40px; }

.p-48 { padding: 48px; }
.pt-48 { padding-top: 48px; }
.pr-48 { padding-right: 48px; }
.pb-48 { padding-bottom: 48px; }
.pl-48 { padding-left: 48px; }

.p-56 { padding: 56px; }
.pt-56 { padding-top: 56px; }
.pr-56 { padding-right: 56px; }
.pb-56 { padding-bottom: 56px; }
.pl-56 { padding-left: 56px; }

.p-64 { padding: 64px; }
.pt-64 { padding-top: 64px; }
.pr-64 { padding-right: 64px; }
.pb-64 { padding-bottom: 64px; }
.pl-64 { padding-left: 64px; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.sr .has-animations .is-revealing {
    visibility: hidden;
}

/* ==========================================================================
   BUTTON COMPONENTS
   ========================================================================== */

.button {
    display: inline-flex;
    font-family: "Lexend", sans-serif;
    font-size: 14px;
    letter-spacing: -0.1px;
    font-weight: 100;
    line-height: 16px;
    text-decoration: none !important;
    background-color: #ffffff;
    color: #FC800B !important;
    border: 2px solid #FC800B;
    border-radius: 50px;
    cursor: pointer;
    justify-content: center;
    padding: 10px 20px;
    height: 40px;
    text-align: center;
    white-space: nowrap;
}

.button:active {
    outline: 0;
}

.button::before {
    border-radius: 4px;
}

.button-shadow {
    position: relative;
}

.button-shadow::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    mix-blend-mode: multiply;
    transition: box-shadow .15s ease;
}

.button-shadow:hover::before {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.button-sm {
    padding: 8px 24px;
    height: 32px;
}

.button-sm.button-shadow::before {
    box-shadow: 0 4px 16px rgba(31,43,53,0.12);
}

.button-sm.button-shadow:hover::before {
    box-shadow: 0 4px 16px rgba(31,43,53,0.25);
}

.button-primary {
    color: #333333 !important;
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #fffffff5), 
                      conic-gradient(from var(--angle), #C131B7, #E56C6E, #fc800b,#C1AC97, #62C8EC, #C131B7);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 50px;
    
    animation: rotateGradient 4s linear infinite, breatheGlow 3s ease-in-out infinite;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 20px;
}

.button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(252, 128, 11, 0.25);
}

.button-primary::before {
    display: none;
}

.button-primary.button-shadow::before {
    display: none;
}

.button-primary.button-shadow:hover::before {
    display: none;
}
.button-block {
    display: flex;
}

/* ==========================================================================
   LAYOUT SECTIONS
   ========================================================================== */

/* Page Layout */
.is-boxed {
    background: #ffffff;
}

.body-wrap {
    background: transparent;
    /* overflow: hidden; */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* .boxed-container {
    max-width: 1440px;
    margin: 0 auto;
    box-shadow: 0 30px 48px rgba(193, 49, 183, 0.2);
} */

@supports (-ms-ime-align: auto) {
    .boxed-container {
        box-shadow: 0 16px 48px rgba(31,43,53,0.12);
    }
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.section {
    position: relative;
    background: #fffdfc;
}

.section-inner {
    position: relative;
    padding-top: 48px;
    padding-bottom: 48px;
}



#main-section::after {
                    content: '';
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100px; 
                    background: linear-gradient(to bottom, transparent, #ffffff); 
                    z-index: 20 !important;

}

@media (min-width: 641px) {
    .section-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.section-inner-single {
    position: relative;
    padding-top: 10px;
    padding-bottom: 48px;
}

@media (min-width: 641px) {
    .section-inner-single {
        padding-top: 20px;
        padding-bottom: 80px;
    }
}

#main-section {
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

/* Brand gradient for hero title */
h1, h2, h3, h4, h5, h6,
.brand h1 span,
.header-brand h1 span {
    color: black;
    display: table;
}

.error-title {
    display: block;
    margin: auto;
    margin-top: 34px;
}

/* Content page styling */

.content h1 {
    /* background: linear-gradient(135deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
    background-clip: text;
    -webkit-background-clip: text; */
    color: black;
    margin-bottom: 40px;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
    margin-bottom: 24px;
}

.content p {
    color: #333333;
    justify-content: space-between;
}

/* ==========================================================================
   GRADIENT ANIMATION VARIABLES
   ========================================================================== */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateGradient {
  to { --angle: 360deg; }
}

/* 2. The Breathing Shadow Animation */
@keyframes breathe {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }
    35%, 35% {
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    }
    50% {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    }
}

@keyframes nebulaDrift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%; /* Shift horizontally */
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes turbulentGlow {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}

@keyframes breatheGlow {
    0%, 100% {
        -webkit-filter: drop-shadow(0px 8px 16px rgba(252, 128, 11, 0.2));
        filter: drop-shadow(0px 8px 16px rgba(252, 128, 11, 0.2));
    }
    50% {
        -webkit-filter: drop-shadow(0px 12px 24px rgba(252, 128, 11, 0.4));
        filter: drop-shadow(0px 12px 24px rgba(252, 128, 11, 0.4));
    }
}
/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    padding: 24px 0;
    height: 120px;
    z-index: 100;
    background-color: rgba(255, 247, 243, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(90deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC) 1;
    transition: background-color 0.3s ease, backdrop-filter 0s, height 0.3s ease;
}

.site-header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: height 0.3s ease;;
}

.header-links {
    display: inline-flex;
}

.header-links li {
    display: inline-flex;
}

.header-links a:not(.button) {
    font-family: "Lexend", sans-serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.1px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 16px;
    padding: 8px 24px;
}

.header-links a:not(.button):hover,
.header-links a:not(.button):active {
    color: #000000;
}

body.mobile-menu-active .site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Header link styling */
.site-header-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70PX;
    padding: 0;
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #333333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Header navigation updates */
.header-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 100px;
}

.header-nav.active {
    display: block;
}

.header-nav .header-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.header-nav .header-links li {
    margin: 0 0 24px 0;
}

.header-nav .header-links a:not(.button) {
    font-size: 24px;
    padding: 16px 24px;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    width: 200px;
}

.header-nav .header-links a:not(.button):hover {
    background: rgba(193, 49, 183, 0.08);
    border-radius: 8px;
}

@media (max-width: 641px) {
    .site-header.scrolled {
        height: 80px;
        padding: 10px 0px;
    }
    .site-header-inner.scrolled {
        padding-top: 0px;
        height: 60px;
    }
}

@media (min-width: 641px) {
    
    .mobile-menu-toggle {
        display: none;
    }

    .header-nav {
        display: block;
        position: relative;
        width: auto;
        height: auto;
        background: none;
        backdrop-filter: none;
        padding-top: 0;
    }
    
    .header-nav .header-links {
        flex-direction: row;
        align-items: center;
    }
    
    .header-nav .header-links li {
        margin: 0 0 0 24px;
    }
    
    .header-nav .header-links a:not(.button) {
        font-size: 16px;
        padding: 8px 24px;
        width: auto;
        border-bottom: none;
    }
    
    .header-nav .header-links a:not(.button):hover {
        background: none;
        border-radius: 0;
    }
}

/* Dropdown menu styling */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: 4px;
    margin-right: 0px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    min-width: 200px;
    max-width: 300px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    z-index: 1002;
    margin-top: 0;
    border: 1px solid transparent;
    background-image:
        linear-gradient(#ffffff, #fffffff5), linear-gradient(to right, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.dropdown-menu li {
    list-style: none;
    margin: 0 !important;
    padding: 4px 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100% !important;
    text-align: center !important;
    padding: 12px 16px;
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    letter-spacing: -0.1px;
}

.dropdown-menu a:hover {
    background: rgba(193, 49, 183, 0.08);
    color: #000000;
    transform: translateY(-2px);
}


/* Desktop dropdown behavior with hover bridge */
@media (min-width: 641px) {
    .has-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Create invisible bridge to prevent dropdown from disappearing */
    .has-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 8px;
        background: transparent;
        z-index: 1001;
    }
    
    /* Increase hover area for the parent link */
    .has-dropdown > a {
        padding: 12px 24px 16px 24px;
        position: relative;
        padding-right: 40px;
    }
}
/* Mobile dropdown behavior */
@media (max-width: 640px) {
    .dropdown-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 48px);
        max-width: 400px;
        min-width: 280px;
        background: #ffffff;
        margin-top: 12px;
        border: 1px solid rgba(193, 49, 183, 0.15);
        border-radius: 16px;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
        overflow: hidden;
    }
    
    .dropdown-menu li {
        width: 100%;
    }
    
    .dropdown-menu a {
        border: none !important;
        font-size: 18px;
        padding: 14px 20px;
        text-align: center !important;
        width: 100% !important;
        display: block;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    text-align: center;
    padding-top: 0px;
    height: calc(100svh - 120px);
    padding-bottom: 0PX;
    /* background: #0a0611; */
}



.hero-typing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10%; /* matches hero-symbol height: 90%, so flex centres on the orb */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    text-align: center;
    pointer-events: none;
    z-index: 2;
}

.hero-typing-text {
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    max-width: 75%;
    font-size: 1.15rem;
    line-height: 1.5;
    color: #333333;
}

/* Cursor lives inside the text span so it always stays on the same line
   as the last typed character, even when text wraps */
#hero-typing-text::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #333333;
    animation: blinkCursor 0.9s steps(1, end) infinite;
    vertical-align: text-bottom;
    margin-left: 4px;
}

.hero-typing-sentences-source {
    display: none;
}

.hero-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-text-container {
    position: relative;
    margin: 0;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-weight: 700;
    width: 70%;
    text-align: center;
    z-index: 6;
    color: #333333;    
    position: relative;
    margin: calc(25svh - 120px) auto;
}


.hero-tagline {
    margin-top: 50px;
    margin-bottom: 32px;
    line-height: 110%;
    font-size: xx-large;
    color: #1a1a1a;
}

.hero-paragraph {
    margin-bottom: 60px;
    color: #333333;
}

.hero-illustration {
    margin-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-cta-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;  /* Changed from center */
    margin-top: auto;
    position: absolute;
    top: 70vh;
    padding: auto;
}

.hero-illustration img,
.hero-illustration svg {
    width: 100%;
    max-width: 620px;
    min-width: 300px;
    height: auto;
    display: block;
    border-radius: 16px; 
    transition: transform 0.35s ease-out;
}

/* Hero image styling */
/* .hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px; 
    transition: transform 0.35s ease-out;
} */
:root {
    --gradient-color-1: #C131B7;
    --gradient-color-2: #E56C6E;
    --gradient-color-3: #FC800B;
    --gradient-color-4: #C1AC97;
    --gradient-color-5: #62C8EC;
}

.hero-frame-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}


.hero-inner {
    position: relative;
    z-index: 2;
}

/* 2. The Container for the 3 boxes */
.hero-mini-features {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%; /* Match your image max-width */
    gap: 16px;        /* Space between individual boxes */
}

/* 3. The Box Style (Clone of .feature-inner but simplified) */
.mini-feature {
    flex: 1;
    font-family: "Lexend", sans-serif;
    text-align: center;
    padding: 6px 6px;
    color: #1a1a1a;
    border-radius: 24px;
    font-size: 1rem;
    
    /* Apply the rotation animation */
    animation: 
        rotateGradient 4s linear infinite;

    /* Gradient border logic */
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #fffffff5), 
                      conic-gradient(from var(--angle), #C131B7, #E56C6E, #fc800b,#C1AC97, #62C8EC, #C131B7);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: default;
}

/* Hover Effect */
.mini-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}


.scroll-arrow {
    position: absolute;
    bottom: 60%;
    left: 50%;
    z-index: 2;
    display: inline-block;
    color: #444444;
    font: normal 400 20px/1 'Lexend', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
    padding-top: 60px;
}

.scroll-arrow:hover {
    opacity: .5;
}

.scroll-arrow span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    border-left: 1px solid #444444;
    border-bottom: 1px solid #444444;
    transform: rotate(-45deg);
    animation: scrollBounce 5s infinite;
    box-sizing: border-box;
}

@keyframes scrollBounce {
    0% {
        transform: rotate(-45deg) translate(0, 0);
    }
    10% {
        transform: rotate(-45deg) translate(-10px, 10px);
    }
    20% {
        transform: rotate(-45deg) translate(0, 0);
    }
}

@media (max-width: 1200px) {
    .hero-title{
        font-size: 46px;
        line-height: normal;
    }
    .scroll-arrow{
        left: 75%;
    }
}

/* Mobile Tweak: Ensure they don't get too squashed on very small screens */
@media (max-width: 641px) {
    .hero-text-container {
        position: absolute;
        top: 15svh;
        margin: 0;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    .hero-title {
        font-weight: 700;
        font-size: 30px;
        line-height: normal;
        width: 70%;
        text-align: left;
        z-index: 6;
        color: 333333;    
        position: relative;
        margin: auto auto;
        display: block;
    }

    .hero-cta {
        margin: 0;
    }

    .hero-cta-container {
        position: absolute;
        top: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 12px;
        margin-top: 24px;
        padding-left: 16px;
        padding-bottom: auto;
        bottom: -75svh;
    }
    
    .hero-cta-container .button,
    .hero-cta-container .button-primary {
        width: 250px;
        font-size: medium;
        margin: 0;
    }

    .hero-cta-container{
        margin-bottom: 5vh;
    }
    
    .scroll-arrow{
        left: 50%;
        bottom: -90px;
    }
    
}

@media (max-width: 641px) and (max-height: 800px) {
    .hero-title {
        font-size: 27px;
    }
    .scroll-arrow{
        left: 50%;
        bottom: -40px;
    }
}

@keyframes blinkCursor {
    50% {
        opacity: 0;
    }
}

@media (min-width: 641px) {
    .hero {
        text-align: left;
        padding-top: 60px;
        padding-bottom: 80px;
    }
    
    .hero::before {
        left: 620px;
        height: 800px;
        width: 100%;
    }
    
    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-copy {
        padding-right: 48px;
        min-width: 512px;
        flex: 1;
    }

    .hero-illustration {
        margin-top: 0; /* Remove negative margin */
        padding-bottom: 0;
        display: flex;
        align-items: center; /* Center the image vertically */
        justify-content: center; /* Center the image horizontally */
    }
    
    .hero-illustration img,
    .hero-illustration svg,
    .hero-illustration .hero-image {
        max-width: 100%;
        width: 700px;
        border-radius: 16px !important;
        overflow: hidden;
        -webkit-filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
    }
}

/* #hero-section {
                background-color: #0a0611; 
            } */

            
#hero-section::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 150px; 
                    background: linear-gradient(to top, transparent, #fffdfc);
                    z-index: 1;
                }


@media (min-width: 1025px) {
    .hero::before {
        left: auto;
        width: 43%;
    }
    
    #hero-section::before {
        height: 50px; /* Increase height for larger screens */
    }

    .hero-text-container {
        margin-right: 25px;
    }

    .hero-copy {
        margin-right: 88px;
        padding-right: 0px;
        min-width: 552px;
        border-right: 1px solid #fc800b;
    }
}

/* ==========================================================================
   Concept SECTION
   ========================================================================== */
.concept.container{
    width: 100%;
    display: flex;  
    gap: 1rem;
}

.concept-title {
    color: #ffffff;
    text-align: left;
}



.concept-background {
    background: #2a2730;
    color: #FDF6FA;
    height: 100%;
    background-image: linear-gradient(#2a2730, #2a2730da), conic-gradient(from var(--angle), #C131B7, #DC72C8, #936BE3, #C131B7);
    margin-bottom: -10px;
}

.concept-text {
    padding-top: 12px;
    min-width: 40%;
    max-width: 50%;
    height: 100%;
    flex-grow: 1;
    padding-bottom: 42px;
}

.concept-text.right {
    padding-left: 32px;
    border-left: 1px solid #fc800b;
    text-align: left;
}

.concept-image {
    padding-top: 50px;
    height: 100%;
    margin: auto;
    overflow: hidden;
    animation: breatheGlow 3s ease-in-out infinite;
    -webkit-filter: drop-shadow(0px 16px 60px rgba(193, 49, 183, 0.3));
    filter: drop-shadow(0px 16px 60px rgba(193, 49, 183, 0.3));
}

.concept.section-square {
        position: absolute;
        bottom: 10px;
        left: 0;
        height: 10px;
        width: 40%;
        background: linear-gradient(45deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
    }

@media (max-width: 768px) {
  .concept.container {
    flex-direction: column;
    justify-content: center;

  }

  .concept-title {
    text-align: center;
  }


    .concept-text {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding-bottom: 0px;
    }


  .concept-text.is-revealing.left .concept-image {
    padding-left: 0px;
    margin: 0;
    border-left: none;
    width: 100%;
  }

  .concept-image{
    padding-top: 10px;
  }

  .concept-text.right {
    padding-left: 0px;
    border-left: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 20px;
    }

    .concept-title{
        margin-top: 10px;
    }
}

/* ==========================================================================
   DATA ANIMATION SECTION
   ========================================================================== */

.data-animation-section {
    display: block;
    height: 35svh;
    background: #2a2730;
    color: #FDF6FA;
    background-image: linear-gradient(#0b0a0c, #16151ada), conic-gradient(from var(--angle), #C131B7, #DC72C8, #936BE3, #C131B7);
}



/* ==========================================================================
Speedup SECTION
========================================================================== */

.speedup-section {
    display: block;
    height: auto;
}

.speedup-box {
    position: relative;
    display: block;
    width: 100%;
    left: 0;
    height: auto;           /* Changed from 100% to auto so it can naturally grow */
    min-height: 600px;      /* Changed max-height to min-height */
    z-index: 5;
    top: -5vh;
    margin-bottom: 0px;
}

.speedup-box-inside {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    gap: 1rem;
    padding-top: 32px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 24px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.speedup-box-column1 {
  flex: 3;
  display: flex;
  flex-direction: column;
}

.speedup-box-column2 {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.speedup-title {
    margin-top: 0;
    padding-top: 0;
}

.speedup-legend {
    flex: 1; /* Automatically expand to share available height */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.493);
    border-radius: 12px;
    -webkit-filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
}

.speedup-legend.iqopta {
    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #fffffff5), conic-gradient(from var(--angle), #C131B7, #E56C6E, #fc800b, #C1AC97, #62C8EC, #C131B7);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: rotateGradient 4s linear infinite, breatheGlow 3s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speedup-legend-inside {
    width: 100%;
    /* removed height: 100% since justify-content handles it now */
    padding: 10px 16px;
    box-sizing: border-box;
}
.legend-title {
    margin-top: 0px;
}

.legend-center {
    text-align: center;
}

.speed-graphic-container {
    display: flex; 
    align-items: center; 
    justify-content: center; 
    align-self: center;
    flex: 1;              /* <--- ADD THIS */
    width: 40vw;          /* You might want width: 100%; now that the column bounds it */
    max-width: 700px;
    height: 100%;         /* <--- CHANGED FROM auto */
    max-height:100% ;
    background-color: rgba(255, 255, 255, 0.493);
    border-radius: 12px;
    filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
}

.speedup-plot {
    width: 95%;
    height: auto;
    margin: auto;
    padding: 10px;
}

@media (max-width: 1200px) {
    .speed-graphic-container {
        max-width: 35vw;
        min-width: 15vw;
    }
}
@media (max-width: 768px) {
    
    .speedup-section {
        display: block;
        height: auto;
    }
    .speedup-box{
        margin-bottom: 24px;
        max-height: 100%;
    }

    .speedup-box-inside {
        flex-direction: column;
    }
    .speed-graphic-container {
        width: 100%;
        max-width: none;
        height: auto; 
    }
}


/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features.text-center {
    z-index: 99 !important;
}

.features .section-title {
    z-index: 100 !important;
    margin-top: 0px;
    margin-bottom: 16px;
    padding-top: 64px;
}

.features .section-paragraph {
    margin-bottom: 16px;
    text-align: left;
}

.features-inner.section-inner {
    padding-top: 12px;
    padding-bottom: 40px;
}

.features-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -12px;
    margin-left: -12px;
}

.features-wrap:first-child {
    margin-top: -12px;
}

.features-wrap:last-child {
    margin-bottom: -12px;
}

.features-container {
    z-index: 100;
}

.feature {
    padding: 12px;
    width: 276px;
    max-width: 400px;
    flex-grow: 1;
}

/* .feature-inner {
    height: 100%;
    background: #2a2730;
    padding: 40px 24px;
    box-shadow: 0 16px 48px rgba(193, 49, 183, 0.15);
    color: #FDF6FA;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 26px;
    border-image: linear-gradient(90deg, #C131B7, #DC72C8, #936BE3) 1;
    border: 1px solid transparent;
    padding: 20px;
    background-image:
        linear-gradient(#2a2730, #2a2730da), linear-gradient(to right, #C131B7, #DC72C8, #936BE3); 
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.feature-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(193, 49, 183, 0.25);
} */

.feature-inner {
    height: 100%;
    padding: 20px;
    color: #1a1a1a;
    border-radius: 26px;
    border: 2px solid transparent;
    
    /* White card with gradient border */
    background-image: 
        linear-gradient(#ffffff, #fffffff5), 
        conic-gradient(from var(--angle), #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC, #C131B7);
    
    background-origin: border-box;
    background-clip: padding-box, border-box;
    
    /* Apply the rotation animation */
    animation: 
        rotateGradient 4s linear infinite,
        breathe 3s ease-in-out infinite;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Speed up the rotation on hover */
.feature-inner:hover {
    animation-duration: 1s;
    transform: translateY(-8px);
}

@media (hover: none) and (pointer: coarse) {
    .feature-inner:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Optional: Add a simple active state instead */
    .feature-inner:active {
        opacity: 0.8;
    }
}

@supports (-ms-ime-align: auto) {
    .feature-inner {
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
    }
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    margin-bottom: 16px;
    -webkit-filter: drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.10));
    filter: drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.10));
}

.feature-icon:hover {
    -webkit-filter: drop-shadow(0px 4px 12px rgba(252, 128, 11, 0.4));
    filter: drop-shadow(0px 4px 12px rgba(252, 128, 11, 0.4));
    transition: ease-in-out;
}

.feature-icon img,
.feature-icon svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.feature-image {
    filter: drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.10));
    /* Adjust these values to get your desired orange gradient effect */
    filter: brightness(0) saturate(50%) invert(60%) sepia(75%) saturate(1500%) hue-rotate(350deg) brightness(105%) contrast(105%);
}

.feature:hover .feature-image {
    filter: brightness(0) saturate(80%) invert(60%) sepia(75%) saturate(1500%) hue-rotate(350deg) brightness(105%) contrast(105%) drop-shadow(0px 4px 12px rgba(252, 128, 11, 0.4));
}

.feature-icon-background img {
    display: none;
}

.feature-title {
    margin-top: 12px;
    margin-bottom: 8px;
    color: #000;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.feature-inner p,
.feature-inner .text-sm {
    color: #333333;
}

@media (min-width: 641px) {
    .feature-icon {
        -webkit-filter: drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.10));
        filter: drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.10));
    }

    .feature:hover .feature-icon {
        -webkit-filter: drop-shadow(0px 4px 12px rgba(252, 128, 11, 0.4));
        filter: drop-shadow(0px 4px 12px rgba(252, 128, 11, 0.4));
    }
    
    .features {
        position: relative;
    }
    
    /* .features .section-square {
        position: absolute;
        top: 0;
        left: 0;
        height: 10px;
        width: 44%;
        background: #0a0611;
        background: linear-gradient(45deg, #C131B7, #DC72C8, #936BE3);
    } */
    
    .features .section-square {
        position: absolute;
        top: 0;
        left: 0;
        height: 10px;
        width: 44%;
        background: linear-gradient(45deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
    }

    .features .section-title {
        margin-bottom: 16px;
    }

    .features .section-paragraph {
        text-align: left;
        color: #333333;
    }
}

/* ==========================================================================
   vision-cta SECTION
   ========================================================================== */

.vision-text-container {
    padding-top: 56px;
    padding-bottom: 56px;
    display: block;
    position: relative;
    z-index: 20;
}

.vision-text {
    margin-top: 80px;
    margin-bottom: 80px;
    width: 100%;
    font-style: italic;
    color:#4e4e4e;
    font-size: xx-large;
    padding-left: 2svw;
    padding-right: 2svw;
}

.vision-text-l {
    text-align: left;
}
.vision-text-r {
    text-align: right;
}

.scroll-arrow-second-container{
    display: block;
    position: relative;
    z-index: 30;
    width: auto;
    height: 40px;
    margin-bottom: 40px ;
}
.scroll-arrow.second {
    bottom: 30px;
    height: auto;
    width: auto;
}

@media (max-width: 641px) {
    .vision-headline {
        margin-top: 0px;
    }
    .vision-text {
        font-size: large;
        margin-top: 40px;
        margin-bottom: 40px;
        width: 100%;
    }

    .scroll-arrow.second {
        position: relative;
        bottom: 60px;
        z-index: 50;
    }
}
.ct-backdrop-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-20%) translateY(-10%);
    height: auto;
    width: 100svw;
    pointer-events: none;
    z-index: 0;
}

.ct-backdrop {
    position: relative;
    height: 100svh;
    width: auto;
    opacity: 0.3;
    filter: blur(8px) drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.25));
    -webkit-filter: blur(8px) drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.25));
    z-index: 1;
}

/* ==========================================================================
   VALIDATION SECTION
   ========================================================================== */

.validation-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.validation-row {
    height: fit-content;
}

.validation-box {
    width: 80% !important;
    margin-top: 24px;
    margin-bottom: 24px;
}

/* Container for splitting text and image */
.validation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem;
}

.validation-box-r{
    margin-right: -32px;
    margin-left: auto;
}
.validation-box-l{
    margin-left: -32px;
    margin-right: auto;
}

/* Optional: Swap the order for the right-aligned box so the image is on the left */
.validation-box-r .validation-content {
    flex-direction: row-reverse;
}

/* Ensure the text section takes up remaining space */
.validation-box .speedup-legend-inside {
    flex: 1;
}

/* Restrict the image size */
.validation-image {
    flex-shrink: 0;
    width: 150px; /* Adjust based on your illustrations */
}

.validation-image img {
    width: 400px;
    height: auto;
    display: block;
}

/* Make them stack correctly on mobile */
@media (max-width: 641px) {
    .validation-content,
    .validation-box-r .validation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .validation-box {
        width: 100% !important;
    }

    .validation-box-r, .validation-box-l {
        margin-left: 0px;
        margin-right: 0px;
    }

    .validation-image {
        width: 120px; /* slightly smaller on mobile */
        margin-bottom: 40px;
    
    }
}
/* ==========================================================================
   small-cta SECTION
   ========================================================================== */

.small-cta-section {
    z-index: 21 !important;
    margin-top: 20vh;
    height: auto;
}

.small-cta-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
}
@media (max-width: 641px) {
    .small-cta-container {
            height: 140px;
            position: relative;
            top: auto;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 12px;
            margin-top: 24px;
            padding-left: 16px;
            padding-bottom: auto;
    }
    .small-cta-container .button,
    .small-cta-container .button-primary {
        width: 250px;
        font-size: medium;
        margin: 0;
    }

}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing {
    position: relative;
    overflow: hidden;
    z-index: 99 !important;
}

.pricing .section-title {
    margin-bottom: 48px;
}

.pricing-tables-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: -12px;
    margin-left: -12px;
}

.pricing-tables-wrap:first-child {
    margin-top: -12px;
}

.pricing-tables-wrap:last-child {
    margin-bottom: -12px;
}

.pricing-table {
    padding: 12px;
    width: 344px;
    max-width: 344px;
    flex-grow: 1;
}

.pricing-table-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    background: #ffffff;
    color: #000;
    padding: 24px;
    height: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.10); 
    border-radius: 8px;
}

.pricing-table-inner > * {
    position: relative;
    width: 100%;
    color: #000;
}

/* .pricing-table-inner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    mix-blend-mode: multiply;
    z-index: 1 !important;
} */

/* @supports (-ms-ime-align: auto) {
    .pricing-table-inner::before {
        box-shadow: 0 16px 48px rgba(31,43,53,0.12);
    }
} */

.pricing-table-header {
    position: relative;
}

.pricing-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    height: 1px;
    background: #E2E8ED;
}

.pricing-table-title {
    font-family: "Lexend", sans-serif;
    color: #000;
}

.pricing-table-price-currency {
    color: #333;
}


.pricing-table-inner p,
.pricing-table-inner .text-sm,
.pricing-table-inner li {
    color: #333;
}


.pricing-table-features li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.pricing-table-features li .list-icon {
    display: inline-flex;
    width: 16px;
    height: 12px;
    margin-right: 12px;
}

.pricing-table-cta {
    align-self: flex-end;
}

@media (min-width: 641px) {
    .pricing .section-square {
        position: absolute;
        top: calc(100% - 420px);
        right: 0;
        height: 240px;
        width: 100%;
        background-image: 
            radial-gradient(circle at top left, #C131B7, transparent 40%),
            radial-gradient(circle at bottom right, #62C8EC, transparent 40%),
            radial-gradient(circle at center, #FC800B, transparent 50%),
            linear-gradient(135deg, #C131B7, #FC800B);
            
        background-size: 300% 300%;
        
        -webkit-text-fill-color: transparent;
        color: transparent;
        
        animation: nebulaDrift 8s ease-in-out infinite;
    }
    
    .pricing .section-title {
        margin-bottom: 64px;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    background: #f5f5f5;
    z-index: 100 !important;
}

.site-footer a {
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:active {
    color: #333333;
    text-decoration: underline;
}

.site-footer-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 40px;
}

.site-footer-inner.has-top-divider::before {
    width: 100%;
    background: linear-gradient(45deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-social-links {
    flex: 0 0 auto;
}

.footer-brand,
.footer-links,
.footer-social-links,
.footer-copyright {
    flex: none;
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.footer-brand,
.footer-links,
.footer-social-links {
    margin-bottom: 24px;
}

.footer-links li + li,
.footer-social-links li + li {
    margin-left: 16px;
}

.footer-social-links li {
    display: inline-flex;
}

.footer-social-links li a {
    padding: 8px;
}

@media (min-width: 641px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .site-footer-inner {
        justify-content: space-between;
    }
    
    .footer-brand,
    .footer-links,
    .footer-social-links,
    .footer-copyright {
        flex: 50%;
    }
    
    .footer-brand,
    .footer-copyright {
        justify-content: flex-start;
        align-items: center;
    }
    
    .footer-links,
    .footer-social-links {
        justify-content: flex-end;
        align-items: center;
    }
    

    .footer-links {
        order: 3;
        margin-bottom: 0;
    }

}

/* ==========================================================================
   affiliate logos
   ========================================================================== */

.affiliate-logo-box {
    margin-top: 38px;
    margin-bottom: 24px;
    height: auto;
    flex: auto;
}

/* Container to space out the logos evenly and allow wrapping if there are many */
.affiliate-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly; /* keep logos centered */
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 40px;
    padding: 40px;
    box-sizing: border-box;
}

/* Ensure logos resize dynamically depending on the amount provided */
.affiliate-logo {
    flex: 1 1 120px; /* base width, can grow and shrink */
    max-width: 350px; /* don't let a couple logos span massively */
    max-height: 80%; /* maintain height limits */
    object-fit: contain;
}

@media (max-width: 641px) {
    .affiliate-logo {
        max-width: 100%;
    }
}

/* ==========================================================================
   PERSON GALLERY
   ========================================================================== */

.person-gallery {
    margin: 48px 0;
}

.person-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    justify-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.person {
    width: 100%;
    max-width: 500px;
    height: 400px; /* Fixed height for all cards */
    display: flex;
}

.person-inner {
    height: 100%;
    width: 100%;
    background: #ffffff;
    padding: 32px 24px;
    color: #1a1a1a;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 20px;

    /* Apply the rotation animation */
    animation: 
        rotateGradient 4s linear infinite;

    border: 1px solid transparent;
    background-image: linear-gradient(#ffffff, #fffffff5), 
                      conic-gradient(from var(--angle), #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC, #C131B7);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.person-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.16);
}

.person-photo {
    margin-bottom: 24px;
    flex-shrink: 0;
}

.person-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC) border-box;
}

.person-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.person-name {
    margin-top: 0;
    margin-bottom: 10px !important;
    font-size: 28px;
    font-weight: 600;
    color: #333333;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.person-title {
    margin-bottom: 15px;
    font-family: "Lexend", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #FC800B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.person-description {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #444444;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

@media (min-width: 641px) {
    .person-gallery {
        margin: 40px 0;
    }
    
    .person-gallery-wrap {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .person-gallery-wrap {
        grid-template-columns: repeat(3, 1fr); /* Force exactly 3 columns on large screens */
        max-width: 1000px;
    }
}


/* ==========================================================================
   MISCELLANEOUS
   ========================================================================== */

 /* Map styling */
.map-container iframe {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 450px;
}

.container-single {
    margin-top: 0;
}

body {
    -webkit-animation-delay: 0.1s;
    -webkit-animation-name: fontfix;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
}

@-webkit-keyframes fontfix {
    from { opacity: 1; }
    to   { opacity: 1; }
}


/* Image with right-side caption styling */
.img-right-caption {
    float: right !important;
    margin: 0 0 34px 34px;
    max-width: 500px;
    width: 100%;
    text-align: center;
}

.img-right-caption img, .img-right-caption svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block !important;
    -webkit-filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
}

.img-right-caption .caption {
    font-size: 14px;
    line-height: 1.4;
    color: #FC800B;
    font-style: italic;
    margin: 0;
    padding: 0 8px;
    text-align: center;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .img-right-caption {
        float: none !important;
        margin: 24px auto;
        display: block;
        max-width: 100% !important;
        min-width: 100% !important;
    }
}

/* Clear float utility */
.clear-float {
    clear: both;
}

/* Image with left-side caption styling */
.img-left-caption {
    float: left !important;
    margin: 0 34px 34px 0;
    text-align: center;
}

.img-left-caption img, .img-left-caption svg {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
    display: block !important;
    -webkit-filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.15));
}

.img-left-caption .caption {
    font-size: 14px;
    line-height: 1.4;
    color: #FC800B;
    font-style: italic;
    margin: 0;
    padding: 0 8px;
    text-align: center;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .img-left-caption {
        float: none !important;
        margin: 24px auto;
        display: block;
        max-width: 100%;
    }
}

hr.brand-hrule {
    border: none;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #C131B7, #E56C6E, #FC800B,#C1AC97, #62C8EC) !important; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin: 32px 0 32px 0;
    display: block;
}

hr.brand-hrule.half {
    background: linear-gradient(90deg, #C131B7, #E56C6E, #FC800B) !important;
}

hr.brand-hrule.zero-margin {
    margin: 0px;
}

.canvas {
    background: #ffffff;
}

/* vanta canvas  */
.vanta-canvas {
    background: #ffffff;
    color: #ffffff;
    opacity: 0.15;
	animation-name: fadeInOpacity;
	animation-iteration-count: 1;
	animation-timing-function: ease-in;
	animation-duration: 1.5s;
    z-index: 100;
    mask-image: linear-gradient(to bottom, white, 90% ,transparent);
}

@keyframes fadeInOpacity {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0.15;
	}
}



/* ==========================================================================
   BRAND LOGO LINK
   ========================================================================== */

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    color: inherit !important;
}

.brand-symbol {
    display: block;
    flex-shrink: 0;
    margin-top: 5px;
    width: 85px;
    height: 85px;
    transition: width 0.3s ease, height 0.3s ease;
}

.brand-symbol.scrolled {
    width: 40px;
    height: 40px;
}

.brand-name {
    margin-left: 10px;
    font-family: "Lexend", sans-serif;
    font-size: 22px;
    font-weight: 600;
}

.footer-brand .brand-logo-link {
    gap: 8px;
}


/* ==========================================================================
   ANIMATED WORD GRADIENT
   ========================================================================== */

.animated-gradient-text {
    font-weight: 700;
    background: conic-gradient(
        from var(--angle),
        #333333,
        #333333,
        #333333,
        #333333,
        #333333,
        #333333,
        #333333,
        #333333,
        black,
        var(--gradient-color-1),
        var(--gradient-color-2),
        var(--gradient-color-3),
        var(--gradient-color-4),
        var(--gradient-color-5),
        black,
        #333333
    );
    background-size: 300% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rotateGradient 8s linear infinite;
}

/* ==========================================================================
    glassbox styling
   ========================================================================== */

.glass-box {
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(10px);
    border: solid 1px lightgray;
    border-radius: 16px;
    -webkit-backdrop-filter: blur(10px);
    -webkit-filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.45));
        filter: drop-shadow(0px 16px 60px rgba(0, 0, 0, 0.45));
}

/* ==========================================================================
   Scroll snap
   ========================================================================== */

html {
    scroll-snap-type: y mandatory;
}

.mandatory-scroll-snapping {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* --- Flowing Medical Image Band --- */

.medical-band-container {
    width: 100%;
    height: 100%; /* Will scale to the section it is put inside */
    min-height: 150px; /* Sensible default */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.medical-band-track {
    width: 100%;
    height: 100%;
    position: relative;
    will-change: transform;
}

.medical-band-item {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px; /* Adjust purely for inner empty-space gaps */
}

.medical-band-item img {
    max-height: 80%;
    height: 70%; /* Fallback height or dynamic depending on container */
    width: auto;
    object-fit: contain;
    border-radius: 8px; /* Optional styling */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Optional styling */
    border: 1px solid transparent;
    opacity: 30%;
    filter: grayscale(100%)
}

/* Pseudo-random variations for seamless looping */
.medical-band-item.var-0 img { transform: rotate(-8deg) scale(0.9); }
.medical-band-item.var-1 img { transform: rotate(5deg) scale(1.1); margin-top: 15px; }
.medical-band-item.var-2 img { transform: rotate(-3deg) scale(0.85); margin-bottom: 20px; }
.medical-band-item.var-3 img { transform: rotate(10deg) scale(1.05); }
.medical-band-item.var-4 img { transform: rotate(-12deg) scale(0.95); margin-top: -10px; }
.medical-band-item.var-5 img { transform: rotate(7deg) scale(1.15); margin-bottom: -15px; }

/* Adding some slight transition to hover state */
.medical-band-item img {
    transition: transform 0.3s ease;
}
/* Pause the slide when hovering the item */
.medical-band-item:hover {
    animation-play-state: paused !important;
    cursor: grab;
    z-index: 30;
}

/* Scale the image inside while caught */
.medical-band-item:hover img {
    transform: scale(1.2);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    opacity: 100%;
    filter: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2 ease, filter 0.2 ease; 
}
