@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
}
.section-space {
    padding-top: 50px;
    padding-bottom: 50px;
}
.text-primary{
    color: #424295 !important;
}
.fs-14{
    font-size: 14px;
}
.btn.btn-primary {
    background-color: #ffffff;
    box-shadow: 1px 1px 1px 1px rgba(4,4,4,0.5);
    color: #000000;
    font-size: 16px;
    border: unset;
    border-radius: 10px;
    padding: 10px 40px;
}
.btn.btn-primary:hover {
    background-color: #1b1b1b;
    box-shadow: 1px 1px 1px 1px rgba(4,4,4,0.5);
    color: #ffffff;
    font-size: 16px;
    border: unset;
    border-radius: 10px;
    padding: 10px 40px;
}
/*Header*/
.site-header {
    position: fixed;
    z-index: 999;
    width: 100%;
    transition: all .2s ease-in-out;
    padding: 0;
    background-color: #000000;
    box-shadow: 0px 1px 12px 2px rgba(153, 153, 153, 0.26);
}

.site-logo h1 {
    margin: 0;
    color: #ffffff;
}

/*Hero Section*/
.hero-section {
    padding-top: 77px;
    background: url(../images/hero-image1.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: rgb(0,0,0,0.5);
    background-blend-mode: multiply;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-section {
    color: #ffffff;
    z-index: 111;
}

.hero-content .hero-title {
    max-width: 730px;
    font-size: calc(1.6rem + 2.0vw);
    line-height: 1.1;
    font-weight: 700;
}
.hero-content p {max-width: 660px;}

.hero-content .hero-title span.animated-text {
    color: #fbdd65;
    background: linear-gradient(270deg, #6c757d 2.36%, #ffffff 79.23%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    animation: shine 6s linear infinite;
    background-size: 200% auto;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.app-info-section{
    background-color: #000000;
}
.app-info-section h2{
    color: #ffffff;
}
.icon-box {
    background-color: #ece8fa;
    height: 80px;
    width: 100px;
    border-radius: 5px;
    align-items: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section{
    background-color: #060505;
}

.mockup-img {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    animation: mockupReveal linear forwards;

    /* Scroll trigger */
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
}

@keyframes mockupReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}