@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/*@font-face {
  font-family: "Helvetica Neue-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/HelveticaNeue Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Helvetica Neue-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/HelveticaNeue.ttf") format("truetype");
}*/
body, html {
    scroll-behavior: smooth; /* This makes the scroll animation smooth */
    /*perspective: 1200px; !* This gives the 3D effect *!*/
    /*overflow: hidden; !* Ensure no scrolling *!*/
}

body {
    color: #fff;
}

.page-content {
    position: relative;
    /*overflow: hidden;  !* This ensures any offscreen content is hidden during animations *!*/
}

a {
    text-decoration: none;
}

.screen a {
    display: contents;
    text-decoration: none;
}

.container-center-horizontal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    pointer-events: none;
    width: 100%;
}

.container-center-horizontal > * {
    flex-shrink: 0;
    pointer-events: auto;
}

* {
    box-sizing: border-box;
}


:root {
    --black: #000000;
    --light: #ffffffcc;
    --white: #ffffff;
    --mint: rgba(22, 160, 133, 0.50);
    --grey: #8491A0;

    --font-size-l: 80px;
    --font-size-m: 30px;
    --font-size-s: 18px;
    --font-size-xs: 14px;

    --font-family-poppins: "Poppins", sans-serif;
    /*--font-family-helvetica_neue-bold: "Helvetica Neue-Bold", Helvetica;*/
    /*--font-family-helvetica_neue-regular: "Helvetica Neue-Regular", Helvetica;*/
}

body {
    background-color: var(--black);
    line-height: 1.3;
    color: var(--light);
    font-family: var(--font-family-poppins);
    font-size: var(--font-size-s);
    font-style: normal;
    font-weight: 300;
}

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

h2 {
    font-size: 24px;
}

h3 {
    font-size: var(--font-size-s);
}

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

.mint {
    background: var(--mint);
}

.d-flex {
    display: flex;
}

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

.h-100 {
    min-height: 100vh
}

.page-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    background: #000;
    top: 0;
}

.page-bg .circle {
    max-width: 800px;
    position: absolute;
    filter: blur(20px);
}

@keyframes moveCircle1 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(150px, 100px);
    }
    /*100% { transform: translate(0, 0); }*/
}

@keyframes moveCircle2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-250px, 150px);
    }
    /*100% { transform: translate(0, 0); }*/
}

@keyframes moveCircle3 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-250px, -250px);
    }
    /*100% { transform: translate(0, 0); }*/
}

.page-bg .circle:first-of-type { /* the first child is the filter definition, so the circles start from the 2nd child */
    animation: moveCircle1 2s infinite alternate;
    left: -180px;
    top: -50px
}

.page-bg .circle:nth-of-type(2) {
    animation: moveCircle2 5s infinite alternate;
    left: 30%
}

.page-bg .circle:nth-of-type(3) {
    animation: moveCircle3 5s infinite alternate;
    right: -50px;
}

.page-bg:nth-child(4) {
    animation: moveCircle3 4s infinite alternate;
}


.center-container {
    max-width: 1300px;
    margin: 0 auto;
}

.intro-description {
    color: var(--light);
    font-family: var(--font-family-helvetica_neue-regular);
    font-size: var(--font-size-m);
    font-style: normal;
    font-weight: 400;
}

.intro-section {
    align-items: flex-start;
    background-color: var(--black);
    display: flex;
    min-height: 100vh;
}

.intro-section .content-wrapper {
    margin-top: 119px;
    position: relative;
}

.intro-section .intro-title {
    color: var(--white);
    font-size: var(--font-size-l);
    font-weight: 600;
    letter-spacing: 0;
    margin: 0 0 20px;
    line-height: 1;
}

.intro-section .intro-description {
    letter-spacing: 0;
}

.intro-section .highlighted {
    border-bottom: 1px solid;
}

.intro-section .decorative-image {
    /*width: 819px;*/
}

.chat-section {
    /*background-image: url("../img/bg.svg");*/
    /*background-size: cover;*/
}

.chat-section header {
    padding: 30px 0;
    text-align: center;
}

.ellipse-icon {
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.page-title {
    background: rgba(255, 255, 255, 0.10);
    padding: 40px 0
}

.title-wrapper {
    display: flex;
    align-items: center;
}

.title-wrapper .ellipse-icon {
    margin-right: 10px
}

.chat-screen {
    min-height: 100vh
}

.chat-screen > div {
    padding-left: 57px !important;
}

.chat-screen {
    padding: 20px 0
}

.chat-screen .title-wrapper {
    margin-bottom: 20px;
}

.chat-screen .widget-grid {
    margin-top: 30px;
}

.chat-screen .ellipse-icon {
    margin-left: -42px;
}

.chat-screen p {
    max-width: 800px;
}

.horizontal-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Optional: enables smooth snap scrolling on the x-axis */
    scrollbar-width: thin; /* For Firefox */
    width: 80vw;
}

.horizontal-scroll-container::-webkit-scrollbar { /* For Chrome, Safari, and Opera */
    width: 12px;
}

.scroll-nav {
    float: right;
    margin: -30px 0 0;
}

.scroll-nav button {
    background-color: transparent;
    font-size: 0;
    width: 40px;
    height: 20px;
    border: none;
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

#scrollLeftButton {
    transform: rotate(180deg);
}

.widget {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    padding: 20px;
    margin: 20px 20px 0 0;
    width: 420px;
    min-width: 420px;
    float: left;
    scroll-snap-align: start; /* Optional: for snap scrolling */
    transition: transform 0.3s; /* Animation effect */
}

.widget .content {
    /*display: flex;*/
}

.widget .widget-img {
    width: 100px;
    margin-right: 15px;
}

.widget-subtitle {
    text-transform: uppercase;
    font-size: var(--font-size-xs);
}

.widget p {
    color: var(--grey);
    font-size: var(--font-size-xs);
}

.tags {
    margin: 0 0 20px;
}

.tag {
    text-transform: uppercase;
    font-size: var(--font-size-xs);
    border: 1px solid var(--grey);
    padding: 5px 15px;
    border-radius: 20px;
}

.widget-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px
}

.reading-time {
    text-transform: uppercase;
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    /*color: var(--grey);*/
}

.reading-time img {
    margin-right: 5px
}

.more-link {
    text-decoration: underline;
    font-size: var(--font-size-xs);
}

.chat-navigation {
    margin: 100px 0 25px;
    min-width: 800px;
}

.chat-navigation ul {
    padding: 0;
    margin: 0
}

.chat-navigation li {
    list-style: none;
    display: inline-block;
    margin-right: 5px;
}

.chat-navigation a {
    text-transform: capitalize;
    font-size: var(--font-size-xs);
    /*color: var(--grey);*/
    border: 1px solid var(--grey);
    padding: 7px 15px;
    border-radius: 20px;
}

.chat-navigation a:active {
    background: var(--mint);
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper button {
    position: absolute;
    top: 22px;
    background: transparent;
    border: none;
    right: 12px;
    cursor: pointer;
}

.textarea-wrapper button img {
    width: 18px;
}

textarea {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    border: none;
    padding: 20px;
    height: 65px;
    width: 100%;
    font-family: inherit;
    font-size: 1em;
    resize: none;
    outline: none;
    color: var(--light)
}

::placeholder {
    color: var(--light)
}

.mobile-logo {
    display: none;
}

.mt-0 {
    margin-top: 0;
}

.mt-20 {
    margin-top: 20px;
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    margin: 50px 0 0
}

.logo-wrapper img {
    margin-right: 40px;
    /*max-height: 80px*/
}

.team-member {
    text-align: center;
    width: 320px;
    min-width: 320px;
}

.team-img {
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    width: 95px;
    height: 95px;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.testimonial-text blockquote {
    margin-bottom: 20px;
}

.project .tags {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.project-img {
    /*float: right;*/
}

.project-img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
}

@media screen and (max-width: 992px) {
    .img-responsive {
        max-width: 100%;
    }

    body {
        padding: 20px 0;
    }

    .intro-section .intro-description {
        margin-bottom: 30px;
    }

    .intro-section .decorative-image {
        display: none;
    }

    .intro-section .intro-title {
        font-size: 50px;
    }

    .intro-description {
        font-size: 18px;
    }

    .chat-screen .ellipse-icon {
        margin-left: -43px;
    }

    .ellipse-icon {
        min-width: 32px;
        min-height: 32px;
        font-size: 13px;
    }

    .mobile-logo {
        display: block;
        padding: 20px 0
    }

    .chat-navigation ul {
        white-space: nowrap;
    }

    .home {
        /*height: 100vh;*/
        /*overflow: hidden;*/
        padding: 0;
    }
    .page-bg .circle {
        animation: none !important;
    /*  width: 130%;
        margin-left: -15%;*/
    }
}
