:root {
    /* DARK THEME CORE PALETTE */
    --primary: #3B82F6; /* Vibrant Blue */
    --secondary: #1E293B; /* Slate 800 */
    --primary-invert: #fff;
    --secondary-invert: #fff;

    --gradient-primary: linear-gradient(135deg, #3B82F6, #2563EB);
    --gradient-secondary: linear-gradient(135deg, #1E293B, #0F172A);

    /* EXTRA COLORS (Adjusted for Dark Mode) */
    --Green: #10B981;
    --Yellow: #F59E0B;
    --Blue: #3B82F6;
    --Purple: #8B5CF6;

    /* DEFAULT COLOR OF TEXTS */
    --text-primary: #94A3B8; /* Slate 400 */
    --block-background: #0B1120; /* Deep Slate */

    /* FOR BUTTONS & INPUTS */
    --elements-roundness: 9999px; /* Modern Pill Shape */

    --space-between-blocks: 2rem;
    /* for mobiles */
    --space-between-blocks-small-screens: 1rem;
}

@font-face {
    font-family: Preevio;
    src: url('/modules/cms/fonts/Preevio_Regular.otf') format('opentype');
    font-weight: 400;
    letter-spacing: 0.5px;
    font-display: swap;
}

@font-face {
    font-family: Preevio;
    src: url('/modules/cms/fonts/Preevio_Medium.otf') format('opentype');
    font-weight: 700;
    letter-spacing: 0.5px;
    font-display: swap;
}

body {
    font-family: 'Preevio', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
}

@media only screen and (min-width: 992px) {
    .container {
        max-width: 1400px !important;
    }
}

.space-between-blocks {
    padding-top: var(--space-between-blocks-small-screens);
    padding-bottom: var(--space-between-blocks-small-screens);
}

@media (min-width: 992px) {
    .space-between-blocks {
        padding-top: var(--space-between-blocks);
        padding-bottom: var(--space-between-blocks);
    }
}

/* ----------------- BUTTONS ------------------- */

button {
    color: inherit;
    padding: 0;
    background: none;
    border: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn {
    font-size: 0.87rem;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--elements-roundness);
    transition: 0.2s all;
    box-shadow: 0 10px 30px 0px rgb(0 0 0 / 5%);
}

.btn,
.btn:hover,
.btn:focus {
    outline: none;
}

.btn:hover,
.btn:focus {
    transform: scale(1.05);
}

.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-primary, --primary);
    color: var(--primary-invert);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: var(--text-primary);
    border: 1px solid #e4e5e7;
}

.btn-primary--empty,
.btn-primary--empty:hover,
.btn-primary--empty:focus {
    color: var(--primary);
}

.btn-primary--outline,
.btn-primary--outline:hover,
.btn-primary--outline:focus {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn--green,
.btn--green:hover,
.btn--green:focus {
    background: var(--Green);
    color: white;
}

.btn--yellow,
.btn--green:hover,
.btn--green:focus {
    background: var(--Yellow);
    color: white;
}

.btn--purple,
.btn--green:hover,
.btn--green:focus {
    background: var(--Purple);
    color: white;
}

.btn--blue,
.btn--green:hover,
.btn--green:focus {
    background: var(--blue);
    color: white;
}

.btn-sm {
    padding: 0.8rem;
}

.highlight {
    color: var(--primary);
}

.highlight--green {
    color: var(--Green);
}
.highlight--yellow {
    color: var(--Yellow);
}
.highlight--blue {
    color: var(--Blue);
}
.highlight--purple {
    color: var(--Purple);
}

/* block header */

.block__header {
    margin-bottom: 2rem;
}

.block__title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.block__title--big {
    font-weight: 700;
    font-size: 2rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }

    .block__title--big {
        font-size: 4.1rem;
        line-height: 1.2;
    }

    .block__header {
        margin-bottom: 4rem;
    }
}

.block__paragraph {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.block__paragraph--big {
    font-size: 1.1rem;
    font-weight: 400;
}

@media (min-width: 992px) {
    .block__paragraph--big {
        font-size: 1.4rem;
        line-height: 1.6;
    }
}

/* Icons */

.fr-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 3px;
    color: var(--primary);
    background: none;
    margin-bottom: 1.5rem;
    transition: 0.5s;
}

.fr-icon--medium {
    font-size: 1.5rem;
    height: 3rem;
    width: 3rem;
}

.fr-icon--large {
    font-size: 1.2rem;
    height: 3.25rem;
    width: 3.25rem;
}

@media (min-width: 992px) {
    .fr-icon--large {
        height: 3.8rem;
        width: 3.8rem;
        font-size: 1.9rem;
    }
}

/*------------------------------*/
/*--Section Name----------------*/
/*------------------------------*/
.hero {
    --hero-nav-height: 100px;
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    background: radial-gradient(circle at top right, #1E293B 0%, #0F172A 100%) !important;
    color: var(--block-text-color) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: none !important;
    border: none !important;
}

.hero-nav {
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    height: var(--hero-nav-height);
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-nav__item {
    margin: auto;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .hero-nav__item {
        margin: 0 1rem;
    }
}

@media (min-width: 992px) {
    .nav--lg-side {
        flex-direction: row-reverse;
    }
}

.hero-nav__logo {
    height: 60px;
}

.hero-nav__link {
    color: inherit;
    opacity: 0.9;
    text-decoration: none;
}

.hero-nav__link:focus,
.hero-nav__link:hover {
    color: inherit;
    text-decoration: none;
    opacity: 1;
}

.ft-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 2000;
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (print), (prefers-reduced-motion: reduce) {
    .ft-menu {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
    }
}

.ft-menu .hero-nav__item {
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .ft-menu .hero-nav__item {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }
}

.ft-menu--js-show {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

.ft-menu::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: var(--block-background);
    opacity: 0.95;
    z-index: -1;
}

@media (min-width: 992px) {
    .ft-menu {
        -webkit-animation-name: none;
        animation-name: none;
        position: static;
        z-index: auto;
    }

    .ft-menu::before {
        content: none;
    }
}

.ft-menu__slider {
    --block-background: transparent;
    --block-text-color: #fff;
    color: var(--block-text-color);
    background: var(--block-background);
    width: 80%;
    height: 100%;
    overflow: hidden;
    transform: translateX(-100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        --block-background: transparent;
        --block-text-color: var(--block-text-color);
        width: auto;
        height: auto;
        background: 0 0;
        transform: none;
        display: flex;
        align-items: center;
    }
}

.ft-menu--js-show .ft-menu__slider {
    transform: translateX(0);
}

.ft-menu__close-btn {
    color: var(--primary-invert);
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2rem;
    margin: 1rem;
    transform: translateX(100%);
    transition: 0.5s transform;
}

@media (min-width: 992px) {
    .ft-menu__close-btn {
        display: none;
    }
}

.ft-menu--js-show .ft-menu__close-btn {
    transform: translateX(0);
}

.ft-menu__close-btn:focus,
.ft-menu__close-btn:hover {
    color: var(--primary-invert);
}

@-webkit-keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        visibility: hidden;
        opacity: 0;
    }

    to {
        visibility: visible;
        opacity: 1;
    }
}

@-webkit-keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        visibility: visible;
        opacity: 1;
    }

    to {
        visibility: hidden;
        opacity: 0;
    }
}

.fixed-nav-container {
    height: var(--hero-nav-height);
}

.hero-nav--is-sticky {
    --block-background: white;
    color: var(--block-text-color);
    background: var(--block-background);
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem !important;
    height: 60px;
    transition: 0.2s height;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@media (min-width: 992px) {
    .hero-nav--is-sticky {
        height: 80px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        padding: 1rem 1.5rem !important;
    }
}

.ft-menu__slider {
    color: var(--block-text-color);
}

.hero-nav--is-sticky .ft-menu__slider {
    color: var(--text-primary);
}

.hero-nav--is-sticky .btn {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
}

@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.ft-menu__slider .hero-nav__item {
    font-size: 1.1rem;
    padding: 0 1rem;
}

@media (min-width: 992px) {
    .ft-menu__slider .hero-nav__item {
        padding: 0;
    }
}

.hero-nav__link {
    display: flex;
    align-items: center;
    outline: 0 !important;
}

.ft-menu__slider {
    overflow-x: hidden;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .ft-menu__slider {
        overflow: visible;
    }
}

.hero-nav__item--with-dropdown {
    position: relative;
    cursor: pointer;
}

@media (min-width: 992px) {
    .hero-nav__item--with-dropdown::before {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: 176%;
    }
}

.hero-nav__dropdown {
    position: static;
    width: 100%;
    height: auto;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    color: var(--text-primary);
    text-align: initial;
    cursor: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown {
        position: absolute;
        top: 176%;
        left: 0;
        margin-top: 0;
        border-radius: 10px;
        border-top: none;
        box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
        background-color: #fff;
        z-index: 2;
        max-height: 0;
        padding: 2.3rem 3rem 2rem 2rem;
        overflow: visible;
        transition: 0.3s all;
    }
}

.dropdown--important {
    position: absolute;
    width: auto !important;
    top: 176%;
    left: 0;
    margin-top: 0;
    border-radius: 10px;
    border-top: none;
    box-shadow: 0 14px 50px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 2;
    max-height: 0;
    padding: 2rem;
    padding-right: 3rem;
    overflow: visible;
    transition: 0.3s all;
}

@media (min-width: 992px) {
    .dropdown--of-1-columns {
        width: 400px;
    }

    .dropdown--of-2-columns {
        width: 700px;
    }

    .dropdown--language-selector {
        width: 250px;
    }
}

.hero-nav__item--show-dropdown .hero-nav__dropdown {
    margin-top: 1rem;
    visibility: visible;
    opacity: 1;
    max-height: 9999px;
    padding-top: 1rem;
}

@media (min-width: 992px) {
    .hero-nav__item--show-dropdown .hero-nav__dropdown {
        margin-top: 0;
        padding: 2.3rem 3rem 2rem 2rem;
    }
}

.hero-nav__item-chevron {
    transition: 0.3s all;
}

.hero-nav__item--show-dropdown .hero-nav__item-chevron {
    transform: rotate(180deg);
}

.hero-nav__item--dropdown-left .hero-nav__dropdown {
    transform: translateX(-15px) !important;
}

.hero-nav__item--dropdown-left .hero-nav__dropdown::before {
    left: 15%;
    right: auto;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown {
    transform: translateX(15px) !important;
    left: auto;
    right: 0;
}

.hero-nav__item--dropdown-right .hero-nav__dropdown::before {
    left: auto;
    right: 15%;
}

@media (min-width: 992px) {
    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown {
        transform: translateX(-15px) !important;
        left: 0;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-left .hero-nav__dropdown::before {
        left: 15%;
        right: auto;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown {
        transform: translateX(15px) !important;
        left: auto;
        right: 0;
    }

    .hero-nav__item--lg-dropdown-right .hero-nav__dropdown::before {
        left: auto;
        right: 15%;
    }
}

.dropdown--important::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6.85px 8.1px 6.85px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    margin: auto;
}

@media (min-width: 992px) {
    .hero-nav__dropdown::before {
        content: '';
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 6.85px 8.1px 6.85px;
        border-color: transparent transparent #fff transparent;
        position: absolute;
        top: -6px;
        left: 0;
        right: 0;
        margin: auto;
    }
}

.dropdown__title {
    color: var(--text-primary);
    opacity: 0.7;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1.18rem;
}

.dropdown__link {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    margin-bottom: 1.3rem;
    color: inherit;
    text-decoration: none;
}

.dropdown__link:focus,
.dropdown__link:hover {
    color: inherit;
    text-decoration: none;
}

[javascript-language-selector] .dropdown__link {
    border-radius: 0.5rem;
    padding: 0.7rem;
    margin-bottom: 3px;
}

.dropdown__link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dropdown__link:last-child {
    margin: 0;
}

[javascript-language-selector] .dropdown__link--selected,
[javascript-language-selector] .dropdown__link:focus,
[javascript-language-selector] .dropdown__link:hover {
    background: rgba(0, 0, 0, 0.06);
}

.dropdown__icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    font-size: 13px;
}

@media (min-width: 992px) {
    .dropdown__icon {
        width: 40px;
        height: 40px;
    }
}

.dropdown__item {
    max-width: 250px;
}

.dropdown__item-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: -1;
}

@media (min-width: 992px) {
    .dropdown__item-title {
        white-space: nowrap;
    }
}

.dropdown__item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    width: 100%;
    background: var(--secondary);
    transform: translateY(2px);
    opacity: 0;
    transition: 0.2s;
}

[javascript-language-selector] .dropdown__item-title {
    white-space: nowrap;
}

[javascript-language-selector] .dropdown__item-title::before {
    display: none;
}

.dropdown__link:focus .dropdown__item-title::before,
.dropdown__link:hover .dropdown__item-title::before {
    height: 30%;
    transform: translateY(0);
    opacity: 0.4;
}

.dropdown__item-description {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    margin-bottom: 0;
}

.dropdown__item-description,
.dropdown__item-title {
    width: 95%;
}

.hero__row {
    height: 300px;
    position: static;
}

@media (min-width: 992px) {
    .hero__row {
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: 0;
    }
}

.hero_empty-column {
    height: 100%;
}

.hero__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

.hero__content {
    text-align: initial;
}

.hero__body {
    padding-top: 2rem;
    padding-bottom: 3rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero__body {
        padding-top: 4rem;
        padding-bottom: 7rem;
    }
}

.hero__title {
    font-size: 2rem;
    font-weight: 900;
    background: -webkit-linear-gradient(#1973FE, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__paragraph {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    opacity: 0.98;
}

@media (min-width: 576px) {
    .hero__title {
        font-size: 2.5rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.17;
    }

    .hero__paragraph {
        font-size: 1.4rem;
        width: 80%;
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 4.1rem;
        line-height: 1.25;
    }
}

.hero__btns-container {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

/*------------------------------*/
/*--Features----------------*/
/*------------------------------*/
.block-1 {
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color);
    overflow-x: hidden;
}

.card-1 {
    height: 100%;
}

.card-1:hover {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 9%);
    padding: 5px;
}

.card-1__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.card-1__paragraph {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.block-1-testimonial {
    background: #c3f0f7;
    padding: 2.5rem;
    border-radius: 4px;
}

.block-1-testimonial__paragraph {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.block-1-testimonial__quote-svg {
    color: currentColor;
    transform: scale(0.8);
}

.block-1-person {
    font-size: 0.9rem;
}

.block-1-person__link {
    color: var(--text-primary);
    text-decoration: none;
}

.block-1-person__link:focus,
.block-1-person__link:hover {
    color: var(--primary);
    text-decoration: underline;
    opacity: 0.9;
}

.block-1-person__avatar {
    width: 40px;
    height: 40px;
    border-radius: 10rem;
    border: 2px solid #fff;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

.mb-2-1rem {
    margin-bottom: 2.1rem;
}

/*------------------------------*/
/*--Industries----------------*/
/*------------------------------*/
.block-2 {
    --block-background: #0F172A !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
    position: relative;
    z-index: 0;
}

.block-2-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
}

@media (min-width: 992px) {
    .block-2-card {
        padding: 2.5rem;
    }
}

.block-2-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.46;
}

@media (min-width: 992px) {
    .block-2-card__title {
        font-size: 1.5rem;
    }
}

.block-2-card__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.block-2-card {
    display: none !important;
}

.block-2-card:first-child {
    display: flex !important;
}

@media (min-width: 992px) {
    .block-2-card:first-child,
    .block-2-card:nth-child(2),
    .block-2-card:nth-child(3) {
        display: flex !important;
    }
}

.splide__track {
    overflow: visible !important;
}

.block-2 {
    overflow-y: hidden;
}

.block-2 .splide__track .splide__slide {
    height: auto !important;
    display: flex !important;
}

.block-2 {
    position: relative;
}

@media (min-width: 992px) {
    .block-2::after,
    .block-2::before {
        content: '';
        position: absolute;
        right: 0;
        left: 0;
        width: 100%;
        height: var(--space-between-blocks);
        background: var(--block-background);
        z-index: 1;
    }

    .block-2::before {
        top: 0;
    }

    .block-2::after {
        bottom: 0;
    }
}

.block-2__splide {
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    .block-2__splide {
        overflow: visible;
        position: static;
    }
}

.splide__arrows {
    display: none;
}

.block-2__custom-arrows.splide__arrows {
    display: block;
}

.block-2__splide::after,
.block-2__splide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    width: calc(100% + 2rem);
    margin: 0 -1rem;
    height: 2rem;
    z-index: 1;
}

@media (min-width: 992px) {
    .block-2__splide::after,
    .block-2__splide::before {
        height: 9rem;
    }
}

.block-2__splide::before {
    top: 0;
    background: linear-gradient(to bottom, var(--block-background) 0, transparent 100%);
}

.block-2__splide::after {
    bottom: 0;
    background: linear-gradient(to top, var(--block-background) 0, transparent 100%);
}

.block-2__splide-btn {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 34px;
    box-shadow: none;
    width: 50px;
    height: 2rem;
    border-radius: 10rem;
    color: var(--block-background);
    background: var(--block-text-color);
    border: none;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    transform: rotate(90deg);
    z-index: 2;
}

@media (min-width: 992px) {
    .block-2__splide-btn {
        right: 22%;
        left: auto;
    }
}

.block-2__splide-btn:focus,
.block-2__splide-btn:hover {
    background: var(--primary);
    color: var(--primary-invert);
}

.splide__slide.is-active .fr-icon {
    background: var(--primary);
    color: var(--primary-invert);
}

.block-2-card__title {
    position: relative;
}

.block-2-card__title::before {
    content: '';
    position: absolute;
    bottom: 1px;
    right: 0;
    left: 0;
    width: 70%;
    height: 0%;
    background: var(--primary);
    opacity: 0.3;
    transition: 0.5s height;
}

@media (min-width: 992px) {
    .block-2-card__title::before {
        width: 30%;
    }
}

.splide__slide.is-active .block-2-card__title::before {
    height: 30%;
}

.block-2__dots-svg--left {
    color: var(--primary);
    top: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(-15rem, 2rem) rotate(90deg);
    z-index: 2;
}

.block-2__dots-svg--right {
    color: var(--primary);
    bottom: 0;
    right: 0;
    width: 250px;
    height: 100px;
    position: absolute;
    transform: translate(14.5rem, -8rem) rotate(90deg);
    z-index: 2;
}

@media (min-width: 1400px) {
    .block-2__splide::after,
    .block-2__splide::before {
        max-width: 89%;
        margin: auto;
    }

    .block-2__dots-svg--left {
        transform: translate(-13rem, 2rem) rotate(90deg);
    }

    .block-2__dots-svg--right {
        transform: translate(13rem, -8rem) rotate(90deg);
    }

    .block-2__splide-btn {
        right: 25%;
    }
}

/*------------------------------*/
/*--Stats----------------*/
/*------------------------------*/
.block-38 {
    --block-background: #0F172A !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
}

.block__header {
    margin-bottom: 4rem;
}

.block__pre-title {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.block__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .block__title {
        font-size: 2.5rem;
    }
}

.block__paragraph {
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.stats {
    background: var(--gradient-secondary);
    color: var(--secondary-invert);
    border-radius: 0.5rem;
    --stats-li-border-color: rgba(255, 255, 255, 0.2);
}

.stats__li {
    border-bottom: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:last-child {
    border-bottom: none;
}

.stats__li {
    border-right: 1px solid var(--stats-li-border-color);
    padding: 1.5rem 0 !important;
}

.stats__li:nth-child(3),
.stats__li:nth-child(4) {
    border-bottom: none;
}

.stats__li:nth-child(even) {
    border-right: none;
}

@media (min-width: 992px) {
    .stats__li {
        border-bottom: none;
        border-right: 1px solid var(--stats-li-border-color) !important;
        padding: 0 !important;
    }

    .stats__li:last-child {
        border-right: none !important;
    }
}

.stats__number {
    font-size: 2.5rem;
    font-weight: 900;
}

.stats__text {
    width: 90%;
    margin: auto;
    font-size: 0.87rem;
    opacity: 0.9;
}

@media (min-width: 992px) {
    .stats__text {
        width: 100%;
    }
}

/*------------------------------*/
/*--CTA----------------*/
/*------------------------------*/
.block-29 {
    background: var(--gradient-primary, var(--primary));
    color: var(--primary-invert);
    position: relative;
}

@media (min-width: 992px) {
    .block-29 {
        border-radius: 10px;
    }
}

.block-29__title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
}

.block-29__paragraph {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.block-29__paragraph,
.block-29__title {
    text-align: center;
}

@media (min-width: 992px) {
    .block-29__title {
        font-size: 2.5rem;
    }

    .block-29__paragraph,
    .block-29__title {
        text-align: initial;
    }

    .block-29__paragraph {
        width: 90%;
    }
}

/*------------------------------*/
/*--Footer----------------*/
/*------------------------------*/
.block-44 {
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    --text-primary: var(--block-text-color);
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
    font-size: 1rem;
    text-align: center;
}

@media (min-width: 992px) {
    .block-44 {
        text-align: initial;
    }
}

.block-44__logo-container {
    width: 100%;
    margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
    .block-44__logo-container {
        width: auto;
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.block-44__logo {
    height: 36px;
}

.block-44__list {
    display: flex;
    flex-wrap: wrap;
}

.block-44__li-1 {
    margin-bottom: 0.6rem;
    margin: 0.9rem;
}

.block-44__li-1::after {
    content: '';
    display: inline-block;
    width: 0;
}

@media (min-width: 992px) {
    .block-44__li-1 {
        margin: 0;
    }

    .block-44__li-1::after {
        width: 2.8rem;
    }

    .block-44__li-1:last-child::after {
        width: 0;
    }
}

.block-44__link {
    color: var(--block-text-color);
    text-decoration: none;
}

.block-44__link:focus,
.block-44__link:hover {
    color: inherit;
    text-decoration: underline;
}

.block-44__divider {
    margin: 2.4rem 0;
    color: #88909b;
}

.block-44__extra-links {
    justify-content: center;
}

@media (min-width: 768px) {
    .block-44__extra-links {
        justify-content: flex-start;
    }
}

.block-44__copyrights {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/*------------------------------*/
/*--Contact us----------------*/
/*------------------------------*/
.block-27 {
    --space-between-blocks: 1rem;
    --elements-roundness: 5px;
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.block-27__row {
    height: 300px;
}

@media (min-width: 992px) {
    .block-27__row {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        height: 100%;
    }
}

.block-27__image-column {
    height: 100%;
    background-position: center;
    background-size: cover;
}

@media (min-width: 992px) {
    .block-27__image-column {
        margin: 0 !important;
    }
}

.block-27__content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.block-27__bg-image {
    background-position: center;
    background-size: cover;
}

.contact-form__title {
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form__paragraph {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.contact-form {
    margin: auto;
}

.hr {
    margin-top: 3rem;
    margin-bottom: 3rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.hr__or {
    background: var(--block-background);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 54px;
    height: 23px;
    margin-top: -12px;
    display: block;
    color: #ccc;
}

.contact-form__input {
    color: var(--text-primary);
    font-size: 0.87rem;
    padding: 0.87rem 1.4rem;
    border-radius: 5px;
    border: 1px solid #e5e7eb;
    background: #fff;
    width: 100%;
    margin-bottom: 0.87rem;
}

textarea.contact-form__input {
    height: 130px;
    resize: none;
}

.contact-form__input:focus {
    border: 1px solid var(--primary);
    outline: 0;
    box-shadow: none;
}

.btn--loading {
    opacity: 1;
    cursor: progress;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn--loading::after,
.btn--loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.btn--loading::before {
    background: var(--primary);
    width: 100%;
    height: 100%;
    z-index: 1;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn--loading::after {
    margin: auto;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top: 2px solid var(--primary-invert);
    width: 1.5rem;
    height: 1.5rem;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    z-index: 2;
}

.h-100 {
    height: 100% !important;
}

/*------------------------------*/
/*--Page/Blog----------------*/
/*------------------------------*/
.article-block {
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
}

.article-block__title {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.article-block__info {
    opacity: 0.95;
    font-size: 0.9rem;
    margin: 0;
}

.article-block__author {
    color: inherit;
    position: relative;
    padding-right: 13px;
    margin-right: 13px;
}

.article-block__author:focus,
.article-block__author:hover {
    color: inherit;
    text-decoration: underline;
}

.article-block__author::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 90%;
    margin: auto;
    width: 3px;
    transform: rotate(10deg);
    background: var(--primary);
}

.article-block__header-img {
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0 10px 8px rgba(0, 0, 0, 0.1));
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
    font-weight: 600;
    line-height: 1.5;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.article-container__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

.article {
    padding: 0 1.5rem;
}

.article p {
    line-height: 2.1;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .article {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.article img,
.article video {
    width: 100%;
}

pre {
    background: #333;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
}

ol,
ul {
    line-height: 2;
}

blockquote {
    margin: 0 0 1rem;
    padding: 1rem 1rem 1px 1rem;
    background: rgba(0, 0, 0, 0.02);
    font-style: italic;
    margin-top: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

/*------------------------------*/
/*--Testionial----------------*/
/*------------------------------*/
.block-20 {
    --block-background: #0B1120 !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
}

.testimonial-card-1 {
    border-radius: 5px;
    position: relative;
    padding: 2.3rem 2.2rem 2.2rem 2.2rem;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.09);
    margin-bottom: 7rem;
}

@media (min-width: 992px) {
    .testimonial-card-1 {
        height: 100%;
        margin-bottom: 0;
    }
}

.testimonial-card-1__paragraph {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.7;
}

.testimonial-card-1__quote-symbol {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15) !important;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60A5FA !important;
    font-size: 1rem;
    border-radius: 12px !important;
    margin-top: 20px;
    margin-left: auto;
    transition: all 0.3s ease;
}

.testimonial-card-1__quote-symbol i {
    font-size: 1rem !important;
    opacity: 0.8;
}

.testimonial-card-1:hover .testimonial-card-1__quote-symbol {
    background: rgba(59, 130, 246, 0.25) !important;
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.block-20-person {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.block-20-person__avatar {
    padding: 0;
    width: 100px !important;
    height: 100px !important;
    background: transparent !important;
    border-radius: 50% !important;
    border: 4px solid rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(59, 130, 246, 0.15) !important;
    object-fit: cover;
    margin-bottom: 16px;
}

.block-20-person__rating {
    font-size: 0.75rem;
    color: #FBBF24 !important;
}

.block-20-person__name {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #F8FAFC !important;
    background: none !important;
    background-color: transparent !important;
}

.block-20-person__info {
    font-size: 0.87rem;
    opacity: 0.9;
    text-decoration: none;
}

@media (min-width: 1400px) {
    #block__container {
        max-width: 87%;
    }
}

/*------------------------------*/
/*--FAQ----------------*/
/*------------------------------*/
.block-39 {
    --block-background: #0F172A !important;
    --block-text-color: #94A3B8 !important;
    background: var(--block-background) !important;
    color: var(--block-text-color) !important;
}

.content-block {
    text-align: initial;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .content-block {
        width: 90%;
    }
}

.content-block__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
}

@media (min-width: 992px) {
    .content-block__title {
        font-size: 1.5rem;
    }
}

.content-block__paragraph {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

/* ----------------------------------------------------------------- */
/* DARK THEME OVERHAUL (PREMIUM & MODERN) - GLOBAL INJECTION */
/* ----------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body, html {
    background-color: #0B1120 !important;
    color: #94A3B8 !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    scroll-behavior: smooth;
}

/* REMOVE WHITE OVERLAYS/GRADIENTS GLOBALLY */
.block-2__splide::after,
.block-2__splide::before {
    display: none !important;
    background: none !important;
}

/* Splide Slider Dark Theme */
.splide__track,
.splide__list,
.splide__slide {
    background: transparent !important;
}

.splide__pagination {
    background: transparent !important;
}

.splide__pagination__page {
    background: #334155 !important;
    opacity: 1 !important;
}

.splide__pagination__page.is-active {
    background: #3B82F6 !important;
}

.splide__progress__bar {
    background: #3B82F6 !important;
}

.splide__progress {
    background: #1E293B !important;
}

/* Splide Arrow Buttons - Modern Circle Design */
.splide__arrow {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.splide__arrow svg {
    fill: #60A5FA !important;
    width: 20px !important;
    height: 20px !important;
}

.splide__arrow:hover {
    background: #3B82F6 !important;
    border-color: #3B82F6 !important;
    transform: scale(1.1) !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
}

.splide__arrow:hover svg {
    fill: #FFFFFF !important;
}

.splide__arrow--prev {
    left: -24px !important;
}

.splide__arrow--next {
    right: -24px !important;
}

/* Block-2 Specific Splide Button */
.block-2__splide-btn {
    background: rgba(30, 41, 59, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    color: #60A5FA !important;
    transition: all 0.3s ease !important;
}

.block-2__splide-btn:hover {
    background: #3B82F6 !important;
    color: #FFFFFF !important;
    border-color: #3B82F6 !important;
    transform: scale(1.1) !important;
}

/* ---------------------- */
/* HERO SECTION */
/* ---------------------- */
header.hero, .hero {
    background: radial-gradient(circle at top right, #1E293B 0%, #0F172A 100%) !important;
    padding-top: 160px !important;
    position: relative;
    overflow: hidden;
    color: #94A3B8 !important;
    box-shadow: none !important;
    border-bottom: none !important;
    border: none !important;
}

/* Glow Blob */
header.hero::before, .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero__title, .hero__title > * {
    background: linear-gradient(135deg, #FFFFFF 0%, #93C5FD 100%) !important; /* Softer Blue Gradient */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: 0 4px 12px rgba(59, 130, 246, 0.2) !important; /* Softer, cleaner shadow */
    font-weight: 700 !important; /* Slightly lighter weight */
    font-size: 2.75rem !important; /* Reduced from 3.5rem */
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.2rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .hero__title, .hero__title > * {
        font-size: 2rem !important;
    }
}

.hero__paragraph p, .hero__paragraph, .hero__paragraph > * {
    color: #CBD5E1 !important; /* Slate 300 - Easier on eyes */
    font-size: 1.125rem !important; /* Reduced from 1.25rem */
    line-height: 1.8;
    background: transparent !important;
    max-width: 650px; /* Limit width for readability */
}

/* ---------------------- */
/* NAVBAR */
/* ---------------------- */
.fixed-nav-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background-color: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px);
    border: none !important;
    border-bottom: none !important;
    padding: 12px 0 !important;
    box-shadow: none !important;
}

.hero-nav, .hero-nav ul, .nav, .hero__nav-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-nav__link, .navbar-brand, .nav-link {
    color: #E2E8F0 !important;
    font-weight: 500 !important;
}

.hero-nav__link:hover, .nav-link:hover {
    color: #3B82F6 !important;
}

/* Dropdowns */
.hero-nav__dropdown, .dropdown-menu {
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
    padding: 1rem !important;
}

.dropdown__item-title, .dropdown-item, .dropdown__link {
    color: #CBD5E1 !important;
}

.dropdown__link:hover, .dropdown-item:hover {
    background-color: #334155 !important;
    color: #FFFFFF !important;
}

/* Fix Dropdown Positioning & Layout Gap */
.hero-nav__dropdown, .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1000 !important;
    display: none; /* Hide by default */
    min-width: 200px;
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5) !important;
    padding: 1rem !important;
    border-radius: 8px !important;
}

/* Show Dropdown on Hover */
.hero-nav__item--with-dropdown:hover .hero-nav__dropdown,
.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Menu */
.hero__nav-list--mobile-menu, .ft-menu {
    background-color: #0F172A !important;
}

/* Navbar Layout Fix */
.hero__nav, .navbar-nav, .nav {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
}

.hero__nav-list, .navbar-nav {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.hero__nav-list li, .navbar-nav .nav-item {
    flex-shrink: 0 !important;
}

/* Fix dropdown container */
.hero-nav__link-wrapper, .nav-item {
    position: relative !important;
}

/* Ensure menu items are evenly spaced */
.hero .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* ---------------------- */
/* BUTTONS */
/* ---------------------- */
.btn-primary, .hero__btn {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.5) !important;
    border-radius: 9999px !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.6) !important;
}

.btn-secondary, .btn-outline-primary {
    background: transparent !important;
    border: 2px solid #334155 !important;
    color: #F1F5F9 !important;
    border-radius: 9999px !important;
}

.btn-secondary:hover {
    background: #1E293B !important;
    border-color: #475569 !important;
    color: #FFFFFF !important;
}

/* ---------------------- */
/* BLOCKS / SECTIONS */
/* ---------------------- */
/* All Blocks Background */
[class^="block-"] {
    background-color: #0B1120 !important; /* Default Dark */
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Remove any space-between-blocks borders */
.space-between-blocks {
    border: none !important;
    box-shadow: none !important;
}

/* Specific Block Overrides */
.block-1, .block-20, .block-39, .block-44 {
    background-color: #0B1120 !important;
}

.block-2, .block-38 {
    background-color: #0F172A !important; /* Slightly Lighter Variation */
}

.block-29 { /* CTA */
    background: linear-gradient(135deg, #1E293B, #0F172A) !important;
    border: 1px solid #334155 !important;
    border-radius: 24px !important;
}

.block-29__title,
.block-29__title * {
    background: none !important;
    background-color: transparent !important;
    color: #F8FAFC !important;
    font-weight: 700 !important;
}

.block-29__paragraph,
.block-29__paragraph * {
    background: none !important;
    background-color: transparent !important;
    color: #94A3B8 !important;
}

/* Cards */
/* Feature Cards with Glow & Gradient */
.card-1 {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%) !important; /* Subtle gradient depth */
    border: 1px solid rgba(255, 255, 255, 0.05) !important; /* Very subtle border */
    border-radius: 24px !important; /* Softer rounded corners */
    padding: 32px !important;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.card-1:hover {
    background: linear-gradient(145deg, #243046 0%, #1e293b 100%) !important;
    border-color: rgba(59, 130, 246, 0.5) !important; /* Blue border reveal */
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2) !important;
}

/* Icon Styling */
.card-1 .fr-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1) !important;
    border-radius: 50% !important; /* Circle icon */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #60A5FA !important;
    transition: all 0.3s ease;
}

.card-1:hover .fr-icon {
    background: #3B82F6 !important;
    color: #FFFFFF !important;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

/* Typography Redesign */
.card-1__title {
    color: #F8FAFC !important;
    font-weight: 700 !important;
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.01em;
}

.card-1__paragraph {
    color: #94A3B8 !important; /* Slate 400 */
    font-size: 1rem !important;
    line-height: 1.6;
    font-weight: 400;
}

/* Industries Cards - Glassmorphism Redesign */
.block-2-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 28px 24px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.block-2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.block-2-card:hover {
    background: linear-gradient(145deg, rgba(36, 48, 70, 0.9) 0%, rgba(30, 41, 59, 0.95) 100%) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.block-2-card:hover::before {
    opacity: 1;
}

/* Industries Card Icon */
.block-2-card .fr-icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.1) 100%) !important;
    border-radius: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA !important;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.block-2-card:hover .fr-icon {
    background: linear-gradient(145deg, #3B82F6 0%, #2563EB 100%) !important;
    color: #FFFFFF !important;
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Industries Card Typography */
.block-2-card__title {
    color: #F8FAFC !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.01em;
    line-height: 1.3;
    background: none !important;
    background-color: transparent !important;
}

.block-2-card__paragraph {
    color: #94A3B8 !important;
    font-size: 0.95rem !important;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 !important;
}

/* Testimonial Cards - Premium Glassmorphism Redesign */
.testimonial-card-1 {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 32px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.testimonial-card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-1:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 130, 246, 0.1) !important;
}

.testimonial-card-1:hover::before {
    opacity: 1;
}

/* Testimonial Avatar */
.block-20-person__avatar,
.testimonial-card-1 img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(59, 130, 246, 0.3) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
    object-fit: cover;
}

/* Testimonial Name - NO HIGHLIGHT */
.block-20-person__name,
.block-20-person__name * {
    color: #F8FAFC !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 4px !important;
    letter-spacing: -0.01em;
    background: transparent !important;
    background-color: transparent !important;
}

/* Block-20-person Container - All Transparent */
.block-20-person,
.block-20-person *,
.block-20-person div,
.block-20-person span,
.testimonial-card-1 .flex-grow-1 {
    background: transparent !important;
    background-color: transparent !important;
}

/* Star Ratings */
.block-20-person__rating i,
.testimonial-card-1 .fa-star {
    color: #FBBF24 !important; /* Amber/Gold */
    font-size: 0.9rem !important;
    margin-right: 2px;
}

/* Testimonial Paragraph */
.testimonial-card-1__paragraph {
    color: #CBD5E1 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    font-style: italic;
    margin-top: 16px !important;
}

/* Quote Icon */
.testimonial-card-1__quote-symbol,
.testimonial-card-1__quote-symbol i {
    color: #3B82F6 !important;
    font-size: 2rem !important;
    opacity: 0.6;
}

/* Avatar Circle with Initials */
.block-20-person__avatar-placeholder {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: linear-gradient(145deg, #3B82F6 0%, #2563EB 100%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4) !important;
}

/* Text Colors - NUCLEAR FIX */
.block__title--big, .block__title {
    color: #FFFFFF !important;
    font-weight: 700 !important; /* Reduced from 800 */
    font-size: 2.25rem !important; /* Reduced size */
    line-height: 1.25 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1rem !important;
}

@media (min-width: 992px) {
    .block__title--big {
        font-size: 2.75rem !important; /* Cap max size on desktop, preventing the huge 4rem+ */
    }
}

.block__paragraph--big, .block__paragraph--big *,
.block__paragraph, .block__paragraph *,
.card-1__paragraph, .card-1__paragraph *,
.block-2-card__paragraph, .block-2-card__paragraph *,
.content-block__paragraph, .content-block__paragraph * {
    color: #E2E8F0 !important;
    opacity: 1 !important;
    background: transparent !important;
}

.card-1__title, .block-2-card__title, .block-20-person__name, .content-block__title, .block-29__title {
    color: #F1F5F9 !important;
    font-weight: 700 !important;
}

/* Icons */
.fr-icon {
    background: rgba(59, 130, 246, 0.1) !important;
    color: #60A5FA !important;
    border-radius: 12px !important;
}

.card-1:hover .fr-icon {
    background: #3B82F6 !important;
    color: #fff !important;
}

/* Footer (Block 44) */
.block-44 {
    border-top: 1px solid #334155 !important;
}
.block-44__divider { display: none !important; }
.block-44__link { color: #CBD5E1 !important; }
.block-44__link:hover { color: #3B82F6 !important; }
.block-41__copyrights { color: #94A3B8 !important; }

/* ---------------------- */
/* PAGE CONTENT WRAPPER */
/* ---------------------- */
/* Ensure generic pages also get dark theme */
.page-content, .regular-page-content {
    background-color: #0B1120 !important;
    color: #94A3B8 !important;
}

h1, h2, h3, h4, h5, h6 {
    color: #F8FAFC !important;
}

p, li, span {
    color: #E2E8F0;
}

/* Contact Info - More Visible */
a[href^="tel"],
a[href^="mailto"],
.block-27 a,
.block-27 span,
.contact-info a,
.contact-info span {
    color: #CBD5E1 !important;
}

/* Support Label - Bright */
strong, b,
.block-27 strong,
.block-27 b,
p strong,
p b {
    color: #F8FAFC !important;
    font-weight: 600 !important;
}

a[href^="tel"]:hover,
a[href^="mailto"]:hover {
    color: #3B82F6 !important;
}

/* ---------------------- */
/* CONTACT FORM - DARK THEME */
/* ---------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
.form-control,
.form-group input,
.form-group textarea {
    background-color: #1E293B !important;
    border: 1px solid #334155 !important;
    color: #F8FAFC !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder {
    color: #64748B !important;
    opacity: 1;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus,
.form-control:focus {
    background-color: #243046 !important;
    border-color: #3B82F6 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}

/* Contact Form Button */
.btn-contact,
form .btn,
input[type="submit"],
button[type="submit"] {
    background: linear-gradient(135deg, #3B82F6, #2563EB) !important;
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3) !important;
}

.btn-contact:hover,
form .btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, #2563EB, #1D4ED8) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4) !important;
}

/* Form Labels */
label,
.form-label {
    color: #CBD5E1 !important;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* ---------------------- */
/* DARK SCROLLBAR */
/* ---------------------- */
/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #0B1120;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
    border: 2px solid #0B1120;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #334155 #0B1120;
}

/* Body scrollbar */
html, body {
    scrollbar-width: thin;
    scrollbar-color: #334155 #0B1120;
}

/* ---------------------- */
/* BLOG / ARTICLE CARDS - DARK THEME */
/* ---------------------- */
.card,
.article-card,
.blog-card,
.post-card,
[class*="article"],
[class*="blog-item"],
.card-body {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    color: #CBD5E1 !important;
    overflow: hidden;
}

.card:hover,
.article-card:hover,
.blog-card:hover {
    border-color: rgba(59, 130, 246, 0.3) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 130, 246, 0.1) !important;
}

/* Card Title */
.card-title,
.article-title,
.blog-title,
.card h5,
.card h4,
.card h3 {
    color: #F8FAFC !important;
    font-weight: 700 !important;
}

/* Card Text */
.card-text,
.card p,
.article-excerpt {
    color: #94A3B8 !important;
}

/* Card Footer/Meta */
.card-footer,
.article-meta,
.post-meta {
    background: transparent !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #64748B !important;
}

/* Read More Button */
.btn-outline-secondary,
.btn-outline-primary,
.read-more {
    background: rgba(59, 130, 246, 0.1) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #60A5FA !important;
    border-radius: 50px !important;
    padding: 8px 20px !important;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover,
.btn-outline-primary:hover,
.read-more:hover {
    background: #3B82F6 !important;
    color: #FFFFFF !important;
    border-color: #3B82F6 !important;
}

/* ---------------------- */
/* SECTION TITLES - DARK THEME */
/* ---------------------- */
/* Remove light background from all section title containers */
.block__header,
.section-title,
.section-header,
[class*="block-"] .content__title,
[class*="block__"] h2,
[class*="block__"] h3,
.content__title {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Section Title Text */
.block__header h2,
.block__header h3,
.section-title h2,
.section-title h3,
.content__title h2,
.content__title h3,
[class*="block-"] h2,
[class*="block-"] h3 {
    color: #F8FAFC !important;
    background: transparent !important;
    font-weight: 700 !important;
}

/* Latest Blogs Title Container Fix */
.block-44 .content__title,
.block-44 h2,
.block-44 h3,
.block-44 .block__header {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

/* Any wrapper/container inside blocks */
[class*="block-"] > div,
[class*="block-"] .container > div,
.content__title-wrapper,
.title-wrapper {
    background: transparent !important;
}

/* ---------------------- */
/* REMOVE ALL DUPLICATE CONTAINERS */
/* ---------------------- */
/* Nuclear fix - remove all borders and boxes from block containers */
.block-44,
.block-44 *,
.block-44 .container,
.block-44 .row,
.block-44 .col,
.block-44 [class*="col-"],
.block-44 .content__title,
.block-44 .block__header,
.block-44 > div,
.block-44 > div > div,
.block-44 .container > div {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Same for all blocks - remove container borders */
[class^="block-"] .container,
[class^="block-"] .row,
[class^="block-"] [class*="col-"],
[class^="block-"] > div {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Specific container reset */
.container,
.container-fluid,
.row {
    border: none !important;
    outline: none !important;
}
