@font-face {
    font-family: 'Glancyr Neue';
    src: url('../fonts/Glancyr-Neue-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Colors — Systemized Palette */
    --clr-bg: #1E2024;
    --clr-bg-box: #181818;
    --clr-primary: #7B8EFF;
    --clr-primary-light: #C0D2FF;
    --clr-text: #FFFFFF;
    --clr-text-muted: rgba(255, 255, 255, 0.7);
    --clr-text-faded: rgba(233, 236, 242, 0.45);
    --clr-accent: #C0D2FF;

    /* Typography — Fluid Scales (Web & Mobile Alignment) */
    --font-heading: 'Glancyr Neue', sans-serif;
    --font-body: "Roboto Flex", sans-serif;

    --fs-h1: clamp(45px, 8vw, 100px);
    --fs-h2: clamp(32px, 6vw, 85px);
    --fs-h3: clamp(28px, 4vw, 51px);
    --fs-h4: clamp(22px, 3vw, 30px);

    --fs-p: clamp(16px, 1.1vw, 18px);
    --fs-p-lg: clamp(18px, 2vw, 24px);
    --fs-p-xl: clamp(22px, 3vw, 36px);

    /* Line Heights */
    --lh-h: 1.15;
    --lh-p: 1.65;

    /* Spacing — Grid Rhythm */
    --sec-pad: clamp(60px, 10vh, 140px) 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: var(--lh-p);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.font-heading {
    font-family: var(--font-heading);
    line-height: var(--lh-h);
}

p,
.font-body {
    font-family: var(--font-body);
    font-weight: 400;
}

ul.navbar-nav li a {
    color: var(--clr-text) !important;
    font-weight: bold;
    margin: 0px 15px;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
}

ul.navbar-nav li a:hover {
    color: var(--clr-primary) !important;
}

ul.navbar-nav li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    transform: translateX(-50%);
    transition: width var(--transition);
}

ul.navbar-nav li a:hover::after,
ul.navbar-nav li a.active::after {
    width: 26px;
}

nav.navbar {
    padding: 15px 0px;
}

.inner-banner {
    /* background-color: black; */
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

section.inner-banner h1 {
    text-align: center;
    color: var(--clr-text);
    font-family: var(--font-heading);
    font-size: var(--fs-h1);
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 3;
}

.inner-banner-grid {
    position: absolute;
    inset: -20%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.inner-banner-grid-layer {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,
            rgba(255, 255, 255, 0.22) 1px,
            rgba(6, 6, 10, 0) 1px),
        linear-gradient(to bottom,
            rgba(255, 255, 255, 0.22) 1px,
            rgba(6, 6, 10, 0) 1px);
    background-size: 20px 20px;
    opacity: 0.9;
    mix-blend-mode: screen;
    transform: translate3d(0, 0, 0);
    /* Soft overall glow so grid squares feel luminous without being harsh */
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.55));
}

.inner-banner-grid-layer.grid-layer-1 {
    opacity: 0.55;
}

.inner-banner-grid-layer.grid-layer-2 {
    opacity: 0.35;
}

.banner-squares {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.banner-squares .square {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid rgba(192, 210, 255, 0.7);
    background: rgba(192, 210, 255, 0.12);
    box-shadow: 0 0 18px rgba(123, 142, 255, 0.55);
    transform: translate3d(0, 0, 0) scale(0.9);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.banner-squares .sq-1 {
    top: 14%;
    left: 18%;
    animation-name: float-square-a;
    animation-duration: 18s;
}

.banner-squares .sq-2 {
    top: 26%;
    right: 22%;
    width: 10px;
    height: 10px;
    animation-name: float-square-b;
    animation-duration: 16s;
    animation-delay: -4s;
}

.banner-squares .sq-3 {
    bottom: 20%;
    left: 28%;
    animation-name: float-square-b;
    animation-duration: 20s;
    animation-delay: -8s;
}

.banner-squares .sq-4 {
    bottom: 18%;
    right: 18%;
    width: 12px;
    height: 12px;
    animation-name: float-square-a;
    animation-duration: 22s;
    animation-delay: -11s;
}

.banner-squares .sq-5 {
    top: 8%;
    right: 40%;
    animation-name: float-square-c;
    animation-duration: 24s;
    animation-delay: -6s;
}

.banner-squares .sq-6 {
    bottom: 6%;
    left: 42%;
    width: 9px;
    height: 9px;
    animation-name: float-square-c;
    animation-duration: 19s;
    animation-delay: -3s;
}

@keyframes float-square-a {
    0% {
        transform: translate3d(0, 12px, 0) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translate3d(22px, -18px, 0) scale(1);
        opacity: 0.85;
    }

    100% {
        transform: translate3d(-14px, -40px, 0) scale(0.9);
        opacity: 0;
    }
}

@keyframes float-square-b {
    0% {
        transform: translate3d(0, -10px, 0) scale(0.7);
        opacity: 0;
    }

    15% {
        opacity: 0.9;
    }

    55% {
        transform: translate3d(-26px, 14px, 0) scale(1);
        opacity: 0.9;
    }

    100% {
        transform: translate3d(18px, 40px, 0) scale(0.85);
        opacity: 0;
    }
}

@keyframes float-square-c {
    0% {
        transform: translate3d(0, 0, 0) scale(0.8);
        opacity: 0;
    }

    20% {
        opacity: 0.95;
    }

    60% {
        transform: translate3d(26px, -26px, 0) scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: translate3d(-18px, -52px, 0) scale(0.9);
        opacity: 0;
    }
}

.section-heading h2 {
    font-size: var(--fs-h2);
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: clamp(30px, 4vw, 50px);
}

section.story,
section.industries,
section.solution,
section.services,
section.portfolio,
section.started,
.solutions--section,
.service--section {
    padding: var(--sec-pad);
}

.section-heading h3 {
    color: var(--clr-text);
    font-size: var(--fs-h3);
    margin-bottom: clamp(15px, 2.5vw, 30px);
}

.section-heading p {
    color: var(--clr-text-muted);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    margin-bottom: clamp(20px, 3.5vw, 40px);
}

.story-row .section-heading p {
    width: 79%;
    /* text-align: justify; */
}

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

.story-img {
    position: relative;
}

.lower-image {
    position: absolute;
    bottom: -50px;
    left: -115px;
}

.story-row .section-heading p:last-child {
    margin: 0;
}

.section-heading ul {
    padding: 0;
    list-style: none;
    margin-bottom: 35px;
}

.section-heading ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.section-heading ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--clr-text-muted);
    position: absolute;
    border-radius: 100px;
    top: 13px;
    left: 0;
}

.btn-purple {
    background-color: var(--clr-primary);
    border-radius: 100px;
    color: #000;
    font-family: var(--font-heading);
    font-size: 20px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 16px 40px;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 rgba(123, 142, 255, 0);
    transform-origin: center right;
    transition: var(--transition);
}

.btn-purple:hover {
    background: radial-gradient(circle at 0% 0%, #FFFFFF, #7B8EFF);
    color: #050816;
    box-shadow: 0 12px 30px rgba(123, 142, 255, 0.45);
    transform: translateY(-2px) scale(1.02);
}


.section-heading ul {
    padding: 0;
    list-style: none;
    margin-bottom: 35px;
}

.section-heading ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.section-heading ul li:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--clr-text-muted);
    position: absolute;
    border-radius: 100px;
    top: 13px;
    left: 0;
}

.btn-purple {
    background-color: #7B8EFF;
    border-radius: 100px;
    color: black;
    font-family: 'Glancyr Neue';
    font-size: 22px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 16px 40px;
}

.testimonial-box {
    border-radius: 60px;
    background-color: var(--clr-bg-box);
    padding: 50px;
    color: var(--clr-text);
}


.testimonialSwiper {
    padding: 200px 0 100px;
}

.testimonialSwiper .swiper-slide {
    width: 799px;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonialSwiper .swiper-slide-active .testimonial-box {
    padding: 80px;
}

.testimonial-head {
    display: flex;
    gap: 21px;
    align-items: center;
    margin-bottom: 30px;
}

.testimonial-head img {
    border-radius: 50px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    object-fit: cover;
    display: none;
}

.testimonial-head h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.29em;
}

.testimonial-head h2 span {
    color: var(--clr-text-faded);
    margin-left: 8px;
}

.testimonial-box p {
    color: var(--clr-text);
    font-size: var(--fs-p-lg);
    line-height: var(--lh-p);
}

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

.testimonialSwiper .swiper-slide-active .testimonial-box p {
    font-size: var(--fs-p-xl);
    line-height: 1.4;
}

.testimonialSwiper .swiper-slide-active .testimonial-box svg g {
    fill: #7b8eff;
}

span.swiper-pagination-bullet {
    background-color: #FFFFFF;
    margin: 0px 6px !important;
    opacity: 1;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.2);
    background-color: #7B8EFF;
}

.circle-outer {
    background-color: #d7dbdf;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    position: relative;
    letter-spacing: 6.5px;
    transition: background-color 0.6s ease, transform 0.6s ease;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 0 28px;
    line-height: 56px;
    cursor: pointer;
    border: none;
}

.circle-inner {
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.circle-inner:before {
    content: "";
    background: linear-gradient(to top, #d7dbdf 45%, transparent 80%) padding-box;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    border-radius: 50%;
    width: 112%;
    height: 112%;
    z-index: -1;
}

.slot {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

.slot svg {
    height: 70%;
    width: 70%;
}

.slot svg path {
    fill: #7b8eff;
}

.circle-inner svg .svg-text {
    font-weight: 400;
    font-size: 8px;
    transition: fill 0.5s ease;
    fill: #1e2024;
    -webkit-transition: fill 0.5s ease;
    -khtml-transition: fill 0.5s ease;
    -moz-transition: fill 0.5s ease;
    -ms-transition: fill 0.5s ease;
    -o-transition: fill 0.5s ease;
    transition: fill 0.5s ease;
}

.started-row {
    background-color: var(--clr-primary-light);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 80px 88px;
    border-radius: 100px;
    align-items: center;
}

.started-box h2 {
    color: var(--clr-bg);
    -webkit-text-stroke-color: var(--clr-bg);
    font-family: "Glancyr Neue", Sans-serif;
    font-size: var(--fs-h1);
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 30px;
}

.started-box p {
    max-width: 800px;
    color: var(--clr-bg);
    font-size: var(--fs-p-lg);
    font-weight: 400;
    line-height: var(--lh-p);
    margin-bottom: 25px;
}

a.btn.circle-outer {
    text-align: center;
    margin: 0 auto;
}

section.started {
    margin-top: 100px;
    margin-bottom: 100px;
}

footer {
    padding: 120px 0px 120px 0px;
    background-color: #181818;
}

ul.socials {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.socials li a {
    width: 50px;
    height: 50px;
    background-color: #7B8EFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 25px;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(123, 142, 255, 0);
    transform-origin: center;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

ul.socials li a:hover {
    background: radial-gradient(circle at 30% 0%, #FFFFFF, #7B8EFF);
    box-shadow: 0 10px 25px rgba(123, 142, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
}

ul.socials li {
    margin-bottom: 6px;
}

.footer-logo img {
    width: 250px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-box h2 {
    color: var(--clr-text-faded);
    font-size: 26px;
    margin-bottom: 30px;
}

ul.links li a {
    font-size: var(--fs-p-lg);
    line-height: 1.6;
    color: var(--clr-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

ul.links li a:hover {
    color: var(--clr-primary);
}

ul.links li {
    margin-top: 20px;
}

.footer-box h3 {
    font-size: 35px;
    font-weight: 400;
    line-height: 1.29em;
    font-family: var(--font-heading);
    color: var(--clr-primary);
    margin: 0 0 15px;
}

.marque-footer {
    margin-top: 80px;
}

/* Marquee Ã¢â‚¬â€ must clip content + force linear easing */
.marqueeSwiper {
    overflow: hidden;
    width: 100%;
}

.marqueeSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.marqueeSwiper .swiper-slide {
    width: auto !important;
    font-size: 20px;
    font-weight: 600;
    padding: 0 40px;
    white-space: nowrap;
}

.marque-footer p {
    color: var(--clr-text);
    font-size: 199px;
    font-weight: 400;
    line-height: 1.2em;
    font-family: var(--font-heading);
    margin: 0;
}

p.copy-right {
    text-align: center;
    margin: 0;
    margin-top: 40px;
    color: #E9ECF2;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
}

section.solution .upper-image {
    text-align: left;
}

section.solution .lower-image {
    right: -115px;
    left: auto;
}

section.solution .section-heading h3 {
    text-align: right;
}

section.solution .section-heading p {
    margin-left: auto;
    width: 80%;
}

section.solution {
    padding: 100px 0px 200px;
}

.services-box.testimonial-box .testimonial-head h2 {
    color: white;
    font-size: 32px;
    font-weight: bold;
}

.services-box.testimonial-box .testimonial-head {
    align-items: center;
    justify-content: center;
    color: white;
}

section.testimonials .testimonialSwiper .swiper-slide {
    opacity: 1;
}

.services-box.testimonial-box p {
    text-align: center;
    font-size: 40px;
    line-height: 65px;
}

.services-box.testimonial-box .testimonial-head h2 span {
    color: #7B8EFF;
}

.testimonialSwiper .swiper-slide-active .testimonial-box.services-box {
    background-color: #7B8EFF;
}

.testimonialSwiper .swiper-slide-active .testimonial-box.services-box * {
    color: black;
}

.testimonialSwiper .swiper-slide-active .testimonial-box.services-box span {
    color: white;
}

.physical-img img {
    width: 100%;
}

section.physical {
    padding: 100px 0px 0;
}

.testimonialSwiper .swiper-slide-active .testimonial-box.services-box h2 {
    font-size: 40px;
}

section.testimonials.services .testimonialSwiper {
    padding-top: 120px;
}

.testimonialSwiper .swiper-slide-active .testimonial-box.services-box p {
    line-height: 65px;
}

section.portfolio {
    padding: 100px 0px 0;
}

.portfolio-btn button {
    border: 0;
    padding: 0;
    color: var(--clr-text);
    font-family: var(--font-heading);
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 0 !important;
    border: 0 !important;
}

.portfolio-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
    margin-bottom: 30px;
    border-bottom: 0;
}

.portfolio-btn button.active {
    background-color: transparent !important;
    color: var(--clr-primary) !important;
    border: 0;
}

.portfolio-img-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    transition: all 0.4s ease;
}

.portfolio-img-overlay h5 {
    font-size: 28px;
    color: var(--clr-text);
    font-family: var(--font-heading);
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.portfolio-card:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, #ffffff00, #1E2024);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-btn button:hover {
    background-color: transparent;
    color: #7B8EFF;
}

.portfolio-card:hover .portfolio-img-overlay {
    bottom: 30px;
}

.portfolio-card:hover:before {
    opacity: 1;
}

section.industries {
    padding: 100px 0;
}

.section-heading h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: var(--lh-h);
}

section.contact {
    padding: 50px 0px;
}

.contact-info h6 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 20px;
}

.contact-info h2 {
    color: var(--clr-text);
    font-size: var(--fs-h2);
    font-weight: bold;
    font-family: var(--font-heading);
    margin: 20px 0px;
}

.contact-info p {
    color: #ADADAD;
    font-size: 20px;
}

.contact-info ul {
    padding: 0;
    list-style: none;
    margin-top: 40px;
}

.contact-info ul li a {
    color: #ADADAD;
    text-decoration: none;
    font-size: 18px;
}


.contact-info ul li a span {
    width: 35px;
    display: inline-block;
    text-align: center;
}

.contact-info ul li {
    margin-bottom: 20px;
}

.contac-form input.form-control {
    background-color: transparent;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #BFBFBF;
    height: 50px;
    font-size: 18px;
}

.contac-form .input-group-text {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #BFBFBF;
    border-radius: 0;
    padding-left: 0;
}

.contac-form.row .input-group {
    margin-bottom: 50px !important;
}


.contac-form input::placeholder,
.contac-form textarea::placeholder {
    color: var(--clr-text-muted);
}

.contac-form textarea {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #BFBFBF;
    height: 124px;
}


section.google-map img {
    width: 100%;
}

section.banner.home-banner h6 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

section.banner.home-banner h1 {
    color: var(--clr-text);
    -webkit-text-stroke-color: var(--clr-text);
    font-size: var(--fs-h1);
    font-weight: 400;
    line-height: var(--lh-h);
    margin: 0;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

section.banner.home-banner h1 span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.banner.home-banner {
    /* padding: 120px 0px 160px; */
    /*background-color: black;*/
    border-radius: 0;
    /* margin: 0px 6%; */
    /* background-image: url('../img/banner-img.png'); */
    background-repeat: no-repeat;
    background-position: right bottom;
    margin-bottom: 150px;
    /* min-height: 1115px; */
}

.together-box p {
    color: var(--clr-primary);
    font-size: var(--fs-h3);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    font-weight: 500;
}

.together-img {
    opacity: 1;
    width: 500px;
    height: 500px;
}

.together-img img {
    /* width: 100%; */
    border-radius: 0;
}

.work-box {
    max-width: 1770px;
    width: 1770px;
    max-height: 414.688px;
    height: 414.688px;
    margin: 0 auto;
    border-radius: 80px;
    overflow: hidden;
    position: relative;
    margin-bottom: 150px;
}

.works-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.works-image {
    width: 100%;
    height: 100%;
    position: relative;
}


.works-image:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(24, 24, 24, 0.80);
    opacity: 0.4;
    border-radius: inherit;
    transition: opacity 0.35s linear;
    z-index: 100;
}

.works-title {
    width: 80%;
    height: 100%;
    margin: auto 10%;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 999;
}

.works-title h2 {
    font-size: 150px;
    font-weight: 400;
    line-height: 1.29em;
    -webkit-text-stroke: 1px;
    font-family: 'Glancyr Neue', sans-serif;
    color: white;
    margin: 0 0 15px;
    -webkit-text-fill-color: rgb(255 255 255);
    -webkit-text-stroke-color: transparent;
}

section.work-wrapper {
    padding: 200px 0px 100px;
}

section.services h1 {
    color: var(--clr-text);
    -webkit-text-stroke-color: var(--clr-text);
    font-size: var(--fs-h1);
    font-weight: 400;
    line-height: var(--lh-h);
    font-family: var(--font-heading);
    margin: 0 0 15px;
}

section.services h1 span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services .head p {
    color: rgba(233, 236, 242, 0.72);
    font-size: 18px;
    font-weight: 400;
    line-height: inherit;
    width: 75%;
    margin: 0 auto;
}


.service-box {
    width: 410px;
    padding: 80px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
    border-radius: 80px;
    background: #181818;
    transition: all 0.4s;
}

.service-box p {
    color: var(--clr-text-muted);
    font-size: var(--fs-p);
    line-height: var(--lh-p);
    margin: 0 0 15px;
}

.service-box h5 {
    color: var(--clr-text);
    font-size: var(--fs-h4);
    font-family: 'Glancyr Neue', sans-serif;
    margin: 0 0 15px;
}

.service-box img {
    margin-bottom: 50px;
}

.services-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 120px;
    justify-content: center;
}

section.services {
    padding-bottom: 120px;
}

.tt-scroll-to-top.tt-stt-active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.tt-scroll-to-top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 30px;
    bottom: 30px;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
    transition: transform .3s, opacity .3s, visibility .3s;
}

.magnetic-wrap {
    position: relative;
    display: inline-block;
}

.tt-stt-progress {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    box-shadow: inset 0 0 0 2px white;
    background-color: #01062e;
}

svg.tt-stt-progress-circle {
    overflow: hidden;
    vertical-align: middle;
}


.tt-stt-progress::after {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 20px;
    color: white;
    transform: translate(-50%, -50%);
    font-family: "Flaticon";
    content: "\f119";
    /* flaticon-arrow-up unicode */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

svg.tt-stt-progress-circle path {
    fill: none;
    stroke: #7b8eff;
    stroke-width: 4;
}

section.about-info {
    background: #D7DBDF;
    border-radius: 150px;
    padding: 200px 240px;
    margin: 0 67px;
}

.about-box h1 {
    color: #1E2024;
    -webkit-text-stroke-color: #1E2024;
    font-family: "Glancyr Neue", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.29em;
    margin-bottom: 30px;
}

.about-box p {
    color: #1E2024;
    font-size: 26px;
    font-weight: 400;
    line-height: 43px;
    margin-bottom: 40px;
}

.about-left-box img {
    border-radius: 40px;
}

.about-left-box h2 {
    color: #1E2024;
    -webkit-text-stroke-color: #1E2024;
    font-size: 47px;
    font-weight: 400;
    line-height: 1.29em;
    margin-bottom: 0px;
    font-family: 'Glancyr Neue', sans-serif;
    margin-top: 70px;
}

.about-left-box h3 {
    color: #1E2024;
    font-family: "Glancyr Neue", Sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.29em;
    margin-top: 30px;
    text-decoration: underline;
}

.about-left-box p {
    color: #4F5659;
    font-size: 20px;
    font-weight: 400;
    line-height: 33px;
    margin-top: 20px;
}

.about-left-box {
    padding-bottom: 60px;
    margin-bottom: 80px !important;
    border-bottom: 1px solid #4F56591A;
}

.about-left .about-left-box:last-child {
    margin: 0;
    padding: 0;
    border: 0;
}

.about-info .col-lg-6:first-child {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.about-box {
    position: sticky;
    top: 100px;
}

.about-left-box {
    margin-bottom: 40px;
}

.marque-footer p span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service--section {
    padding-top: 100px;
    padding-bottom: 130px;
    overflow: hidden !important;
    position: relative !important;
}


.service--section .container-fluid {
    padding: 0 75px;
}

.service--card.three {
    padding: 80px 0;
    position: relative;
}

.gap--100 {
    gap: 100px !important;
}

.service--card.three .content--wrap .number {
    font-size: 80px;
    font-weight: 400;
    font-family: 'Glancyr Neue';
}

.text--stroke {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
}

.service--card.three .content--wrap .title {
    font-size: 80px;
    margin-bottom: 50px;
    color: #ffffff;
    line-height: 1.1;
    word-break: break-word;
    font-family: 'Glancyr Neue';
}

.service--card.three .service-list--wrap {
    margin-bottom: 50px;
}

.service--card.three .service-list--wrap .service--list {
    padding: 10px 0;
}

.gap--12 {
    gap: 12px !important;
}

.fs--24 {
    font-size: 24px !important;
}

.service--section.three .btn--dark {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 20px 35px !important;
}

ul.service-list--wrap li p {
    font-size: var(--fs-p);
    margin: 0;
    font-weight: 400;
    word-break: break-word;
    color: var(--clr-text);
    line-height: var(--lh-p);
}

.service--card.three .service-list--wrap .service--list img {
    filter: invert(1);
}

.fs--18 {
    font-size: 18px !important;
    color: rgba(233, 236, 242, 0.72);
}

.mb-60 {
    margin-bottom: 60px;
}

.service--card.three.bg--white:before {
    content: "";
    background: linear-gradient(90deg, transparent, rgba(123, 142, 255, 0.22), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
}


.col-lg-12.service-card--wrap__three .service--card.three.bg--white:last-child:before {
    opacity: 0;
}

.col-lg-12.service-card--wrap__three .service--card.three.bg--white:last-child {
    padding-bottom: 0;
}

.thumb--wrap.overflow-hidden img {
    width: 100%;
    border-radius: 50px;
}

.about-left {
    margin-left: 50px;
}

.pb-130 {
    padding-bottom: 130px;
}

.about--section.five .container-fluid {
    padding: 0px 160px;
}


.about--section.five .about-thumb--wrap {
    width: 100%;
    height: 744px;
    border-radius: 15px;
}

.fit--img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chart--card.one {
    bottom: 45px;
    left: 45px;
}

.chart--card {
    height: 240px;
    padding: 24px;
    border-radius: 10px;
}

.chart--card.one h6 {
    font-size: 12px;
    font-weight: 500;
}


.about--section.five .about-content--wrap .about--content {
    padding: 40px 0;
    border-top: 1px dashed white;
    border-bottom: 1px dashed white;
    gap: 40px;
}

.about--section.five .about-content--wrap .about--content .title {
    line-height: 40px;
    color: #C0D2FF;
    font-family: 'Glancyr Neue', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section--content h2 {
    font-size: var(--fs-h2);
    margin-bottom: 20px;
}

.section--content h2 span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section#aboutFive {
    padding: 200px 0px;
}

section#aboutFive .section--content {
    margin-bottom: 60px;
}

.about--content h6 {
    color: white;
    font-family: 'Glancyr Neue', sans-serif;
    font-size: 28px;
    margin: 0;
}

.about--content.d-flex.align-items-baseline p {
    margin: 0;
}

.pb-130 {
    padding-bottom: 130px;
}

.solution--card.one {
    background-color: #E4DAF5;
}

.solution--card {
    border-radius: 25px;
    padding: 35px;
    height: 100%;
}

.solution--card .number--wrap {
    margin-bottom: 76px;
}

.solution--card .logo--wrap {
    margin-bottom: 30px;
    font-size: 40px;
}

.solutions--section .container--fluid {
    padding: 0 160px;
}

.py-130 {
    padding-top: 130px;
    padding-bottom: 130px;
}

.solution--card.two {
    background-color: #CFFFB3;
}

.solution--card.three {
    background-color: #FFC9C9;
}

.solution--card.four {
    background-color: #FDDCA6;
}

.solution--card.five {
    background-color: #B3E0FF;
    /* light blue for Hospitality */
}

.solution--card.six {
    background-color: #D8B3FF;
    /* light purple for Fitness */
}

.solution--card.seven {
    background-color: #FFE6B3;
    /* light yellow/orange for Property Management */
}

.content--wrap p {
    color: black;
}

.content--wrap h6 {
    font-family: 'Glancyr Neue', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.section--content-2 h2 {
    font-size: 85px;
}

.section--content-2 p {
    color: #e9ecf2b8;
    font-size: 18px;
    width: 75%;
    margin: 0 auto;
}

.solution-card--wrap {
    margin-top: 80px;
}

h3.service-h3 {
    text-align: left !important;
}

.started-box.call-to-action-sec h3 {
    font-size: 50px;
    font-weight: 600;
}

.started-box.call-to-action-sec p {
    font-size: 29px;
    margin: 0;
}

.head {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.head img {
    width: 75%;
    border-radius: 30px;
}

.works-gif {
    height: 420px;
    /* border: 1px solid white; */
    border-radius: 50px;
    padding: 10px;
    /* background-color: white; */
    width: 100%;
}


div#faq .accordion-item {
    background: transparent;
}

.accordion-button {
    background: transparent;
}

.faq * {
    border: none;
    color: white;
}

div#faq {
    width: 75%;
    margin: 0 auto;
    margin-top: 40px !important;
}

.accordion-body {
    font-size: 18px;
    color: #e9ecf2b8;
}

button.accordion-button {
    background: transparent;
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background: #7b8eff;
    color: white;
}

div#faq .accordion-button::before {
    content: '';
    border: 0px solid;
    width: 100%;
    height: 0.5px;
    background: aliceblue;
    bottom: 0;
    position: absolute;
    opacity: 0.2;
}

.accordion-header {
    padding-bottom: 0 !important;
}

.accordion-button:not(.collapsed)::before {
    opacity: 0 !important;
}

.home-banner h1 span {
    display: inline-block;
    will-change: transform, opacity;
}

.service-box:hover {
    background-color: #7B8EFF;
}

.service-box:hover * {
    color: black;
}

.service-box:hover img {
    filter: invert(1) brightness(1);
}

section.banner.home-banner p {
    color: white;
    font-size: 20px;
    margin: 0;
    line-height: 36px;
}

.works-gif img {
    width: 100%;
    border-radius: 50px;
    height: 100%;
    object-fit: cover;
    height: 100%;
}

section.services.home-services-anim .service-box {
    padding: 25px 40px;
}

section.services.home-services-anim .service-box p {
    margin: 0 !important;
}

section.services.home-services-anim .service-box:hover {
    transform: scale(1.1) !important;
}

.services-head p {
    color: #E9ECF2;
    font-size: 30px;
    font-weight: 400;
    line-height: inherit;
    width: 100%;
    margin: 0 auto;
}

.list-home-style h6 {
    color: white;
    font-size: 22px;
    font-weight: 600;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOME PAGE â€” ABOUT / MISSION / VISION / VALUES  REDESIGN
   All rules scoped tightly so they never touch other pages.
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ About intro block (watermark heading + intro p) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries .services-head {
    padding: 0 0 60px;
    position: relative;
}

section.industries .services-head h2 {
    /* Inherit the existing watermark gradient but bump up the presence */
    font-size: 85px;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

section.industries .services-head::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #7B8EFF, transparent);
    margin: 30px auto 0;
}

/* â”€â”€ Shared: images on the home About sections â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries .upper-image img,
section.solution .upper-image img {
    width: 100%;
    border-radius: 40px;
    object-fit: cover;
    max-height: 520px;
    display: block;
    /* Subtle glow that matches the site's purple palette */
    box-shadow: 0 20px 60px rgba(123, 142, 255, 0.18), 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Column-level alignment for the image cols */
section.industries .col-md-5,
section.solution .col-md-5 {
    display: flex;
    align-items: center;
}

/* Remove the default right-align on upper-image inside industries/solution */
section.industries .upper-image,
section.solution .upper-image {
    text-align: left;
    width: 100%;
}

/* â”€â”€ Mission h4 â€” accent line on left â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries .section-heading h4,
section.solution .section-heading h4 {
    position: relative;
    padding-left: 28px;
    font-size: 75px;
    line-height: 80px;
    margin-bottom: 28px;
}

section.industries .section-heading h4::before,
section.solution .section-heading h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    height: calc(100% - 24px);
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(180deg, #7B8EFF 0%, transparent 100%);
}

/* Vision: h4 on the right side â€” flip accent line */
section.solution .section-heading h4::before {
    left: 0;
    right: 0;
}

/* â”€â”€ Mission / Vision paragraphs balance â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries .section-heading p,
section.solution .section-heading p {
    font-size: 18px;
    line-height: 31px;
    color: rgba(233, 236, 242, 0.72);
    width: 75%;
    margin-bottom: 0;
}

section.solution .section-heading p {
    margin-left: auto;
}

/* â”€â”€ Industries section padding tweak (home only) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries {
    padding-top: 80px;
    padding-bottom: 130px;
}

section.solution {
    padding: 80px 0 120px;
}

/* â”€â”€ Values section: list-home-style refinement â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.list-home-style h4 {
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 40px;
    padding-left: 28px;
    position: relative;
}

.list-home-style h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: calc(100% - 20px);
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(180deg, #7B8EFF 0%, transparent 100%);
}

.list-home-style {
    padding-right: 40px;
}

.list-home-style h6 {
    color: #C0D2FF;
    font-size: 20px;
    font-weight: 600;
    margin-top: 28px;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Purple dot accent before each value label */
.list-home-style h6::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7B8EFF;
    box-shadow: 0 0 8px rgba(123, 142, 255, 0.8);
    flex-shrink: 0;
}

.list-home-style p {
    color: rgba(233, 236, 242, 0.65);
    font-size: 17px;
    line-height: 29px;
    margin-bottom: 0;
    padding-left: 17px;
    border-left: 1px solid rgba(123, 142, 255, 0.2);
}

/* â”€â”€ Section spacing between the three about blocks â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
section.industries+section.solution {
    margin-top: 0;
}

section.solution+section.industries {
    margin-top: 0;
}

.sol-odd {
    background: #7b8eff;
}

.sol-even {
    background: #181818;
}


.sol-even p {
    color: white;
}

.sol-even .title {
    color: white;
}

canvas {
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    filter: blur(0px);
    opacity: 1;
    filter: blur(4px);
}


section.industries.inner p {
    width: 80%;
}

.footer-box h3 a {
    text-decoration: none;
    display: inline-block;
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-box h3 span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

section.google-map iframe {
    width: 100%;
}

figure.position-figure-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    margin: 0;
}

figure.position-figure-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

section.home-banner {
    position: relative;
    z-index: 1;
}

/* Mouse Mask Background Effect for Banner */
.mask-background {
    position: relative;
    overflow: hidden;
}

.mask-background .container-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.mask-background .container-mask .mask-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-banner-row {
    padding: 15rem 0;
}

.contac-form.row i {
    color: white;
}

.py-80 {
    padding: 80px 0;
}

/* Base image layer */
figure.position-figure-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
}

figure.position-figure-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* âœ… FIX: was z-index:-1, must be above figure */
.mask-background .container-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* â† was -1, changed to 1 */
    overflow: visible;
    /* â† clip-path handles clipping, not overflow */
}

/* This layer gets the clip-path circle from JS */
.mask-background .container-mask .mask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: circle(0px at -9999px -9999px);
    /* hidden by default */
}

/* The purple group_1.png fills the mask-container */
.mask-background .container-mask .mask-container .mask-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mask-background .container-mask .mask-container .mask-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* âœ… FIX: Hide the .mask div â€” it's NOT visible, JS uses it only for position tracking */
.mask-background .container-mask .mask-container .mask {
    display: none !important;
}

/* Text must be above the mask layer */
.home-banner .container {
    position: relative;
    z-index: 2;
}

/* Base image layer */
figure.position-figure-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
}

figure.position-figure-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* âœ… FIX: was z-index:-1, must be above figure */
.mask-background .container-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* â† was -1, changed to 1 */
    overflow: visible;
    /* â† clip-path handles clipping, not overflow */
}

/* This layer gets the clip-path circle from JS */
.mask-background .container-mask .mask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: circle(0px at -9999px -9999px);
    /* hidden by default */
}

/* The purple group_1.png fills the mask-container */
.mask-background .container-mask .mask-container .mask-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mask-background .container-mask .mask-container .mask-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* âœ… FIX: Hide the .mask div â€” it's NOT visible, JS uses it only for position tracking */
.mask-background .container-mask .mask-container .mask {
    display: none !important;
}

/* Text must be above the mask layer */
.home-banner .container {
    position: relative;
    z-index: 2;
}

.bg-color-primary {
    background-color: #7b8eff;
}

.mask-background .mask-container .mask {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.mask-background .mask-container {
    background-color: #7b8eff;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-mask-image: radial-gradient(circle var(--mask-radius, 250px) at var(--mask-x, -9999px) var(--mask-y, -9999px), black 30%, transparent 100%);
    mask-image: radial-gradient(circle var(--mask-radius, 250px) at var(--mask-x, -9999px) var(--mask-y, -9999px), black 30%, transparent 100%);
    clip-path: none !important;
}

.footer-box p span {
    background: linear-gradient(180deg, #fff 30%, #1e2024 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-box p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.29em;
    margin-bottom: 0px;
    font-family: 'Glancyr Neue', sans-serif;
    color: #000;
    margin: 0 0 15px;
}

header {
    width: 100%;

}


header.scrolled {
    background: #1E2024;
    z-index: 99999 !important;
}

.footer-box p {
    color: white;
}

section.banner.home-banner p {
    width: 75%;
    margin: 0 auto;
}

.serv-pad-btm {
    padding-bottom: 0 !important;
}

section.inner-banner .scroll-line {
    height: 0px !important;
}

section.solution.serv-pad-btm p {
    margin: 0;
}

.contac-form textarea {
    height: 90px;
    color: white !important;
    box-shadow: none !important;
}

.contac-form textarea:focus {
    background: transparent;
    box-shadow: none;
    border-color: white;
}

section.together.home-together-anim {
    padding-bottom: 3rem;
}

.together-box p {
    margin-top: 5rem;
}

/* Floating label colors */
.contac-form .form-floating label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    padding-left: 12px;
}

.contac-form .form-floating>.form-control:focus~label,
.contac-form .form-floating>.form-control:not(:placeholder-shown)~label {
    color: #7b8eff;
    font-size: 12px;
}

/* Keep input backgrounds transparent */
.contac-form .form-floating .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #BFBFBF;
    border-radius: 0;
    color: white;
    padding-left: 12px;
}

.contac-form .form-floating .form-control:focus {
    background-color: transparent;
    border-bottom-color: #7b8eff;
    box-shadow: none;
    color: white;
}

/* Fix textarea height inside floating */
.contac-form .form-floating textarea.form-control {
    height: 120px;
}

/* Autofill fix */
.contac-form .form-control:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: white;
    transition: background-color 5000s ease-in-out 0s;
}

figure.white-logo-width img {
    width: 75%;
}

figure.white-logo-width {
    text-align: center;
}

section.industries.inner h2 {
    margin-bottom: 5rem;
}

section.testindus.inner {
    padding: 2rem 0;
}

section.choose {
    padding-bottom: 8rem;
}

.statistics-section {
    background-color: #1E2024;
    padding: 80px 0;
}

.statistics-number {
    font-family: 'Glancyr Neue', sans-serif;
    font-size: 100px;
    font-weight: 400;
    color: #7B8EFF;
    margin-bottom: 15px;
}

.statistics-text {
    color: #D7DBDF;
    font-size: 25px;
    font-weight: 400;
    font-family: 'Glancyr Neue';
    margin: 0;
}

h2.getintouch {
    -webkit-text-fill-color: white !important;
}

article.solution--card.sol-odd h6 {
    color: black;
}

article.solution--card.sol-odd h6 {
    color: black;
}

.started-box.call-to-action-sec h3 {
    color: black;
}

.section-heading h3 span {
    color: #7B8EFF;
}

footer .links {
    list-style: none;
    padding: 0;
}