/* start  */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap");
@import url("imgs/hero-bg.jpg");

* {
    box-sizing: border-box;
    font-family: "Montserrat", Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

:root {
    --secondry-bg-color: #000B1D;
    --primary-colour: #E300E1;
    --secondry-colour: #1d0f3f;
    --text-dark: #0f0f0f;
    --text-white: #f2f2f2;
    --text-light-grey: #aaaaaa;
    --bg-white: #f5f5f5;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-white);
    color: var(--text-white);
}

/* basic tags */
body {
    background-color: var(--bg-white);
}

h1 {
    color: var(--text-dark);
    font-size: 25pt;
}

h2 {
    font-size: 18pt;
    font-weight: bold;
    color: var(--text-dark);
}

h3 {
    margin-top: 0.5rem;
    font-size: 13pt;
    font-weight: normal;
    color: var(--text-dark);
}

h4{
    color: var(--text-dark);
}

p {
    color: var(--text-dark);
    font-size: medium;
    max-width: 70ch;
    margin-top: 1rem;
}

article {
    display: flex;
    background-color: var(--bg-white);
    margin: 0;
    justify-content: center;
}

a {
    color: var(--primary-colour);
}

a:hover {
    color: var(--secondry-colour);
}
ul li{
    position: relative;
    display: inline-block;
}

li{
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    border-radius: 0;

}
button {
    padding: 0.5rem;
    min-height: 3rem;
    min-width: 10rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    border-radius: 15px;
    border: none;
    transition: 0.3s ease;
}

button:hover {
    transition: 0.3s ease;
}


.parallax{
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.headline {
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
    text-align: center;
}

.dark-area h1, .dark-area h2, .dark-area h3, .dark-area h4, .dark-area p {
    color: var(--text-white);
}

.h-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.v-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.section-start {
    display: flex;
    flex-direction: column;
    padding: 2% 15%;
}

/* Basic styles */
.marg-lf-rt {
    margin-left: 3rem;
    margin-right: 3rem;
}

.justify-center {
    justify-content: center;
    justify-items: center;
}

.download-button  {
    background-color: var(--secondry-bg-color);
    color: var(--text-white);
    font-weight: bold;
    border-style: hidden;
    max-width: 80%;
    margin-top: 1rem;
}

.download-button-dark {
    background-color: var(--primary-colour);
    font-weight: bold;
    color: var(--text-white);
}
.download-button:hover {
    background-color: var(--primary-colour);
    border-color: var(--primary-colour);
    border-style: hidden;
}

.download-button-dark:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
    border-color: var(--primary-colour);
    border-style: inset;
transition: all 0.5s ease;
}
.download-button:focus {
    box-shadow: none;
}
 .product-link {
   text-decoration: none;
display: flex;
}

.submit-btn{
    padding: 0.5rem;
    min-height: 3rem;
    min-width: 10rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    border-radius: 15px;
    border: none;
    transition: 0.3s ease;

}
/* navigation menu */
nav {
    position: sticky;
    top: 0;
    z-index: 899;
}

.navbar {
    background-color: var(--secondry-bg-color);
    color: var(--text-white);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 15px 75px;

}

.navbar ul {
    list-style: none;
    gap: 2rem;
    display: flex;
}

.navbar li {
    position: relative;


}

.navbar li a {
    text-transform: capitalize;
    text-decoration: none;
    font-size: 16pt;
    color: var(--text-white);
    transition: 0.3s ease;
}

.navbar li a:before {
    transition: 0.3s ease;
}

.navbar li a:hover {
    font-weight: bold;
    color: var(--primary-colour);
}

.menu {
    margin-top: 0;
    margin-bottom: 0;
    background-color: var(--secondry-bg-color);
}

.menu a {
    color: var(--text-white);
    text-transform: capitalize;
}
.menu a:hover {
    color: var(--primary-colour);
    font-weight: bold;
}

a:active {
}

.menu-active {
    color: var(--primary-colour) !important;
    background-color: #0f0f0f00 !important;
    font-weight: bold;
}





/* hero slider */
.hero {

    /*background-color: var(--secondry-bg-color);*/
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 100%), url(imgs/hero-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    display: flex;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-right: 10%;
    justify-content: space-between;
}

.hero-img {
    padding-right: 20%;
    margin-right: 15%;
}


.hero-text-box {
    margin-top: 25%;
    padding-left: 10%;
    display: flex;
    flex-direction: column;
}

.hero h3 {
    color: var(--text-white);

    font-weight: bold;
    margin-bottom: 0.2rem;
}

.hero p {

    margin: 0;
    padding: 0;
    color: var(--text-white);
}

.hero-txt {
    margin-top: 0rem;
    color: var(--text-white);
}

.hero-logo {
    max-width: 20%;
}

.heroBtn {
    background-color: var(--primary-colour);
    color: var(--text-white);
    transition: 0.3s ease;
}

.heroBtn:hover {
    background-color: white;
    color: var(--primary-colour);
    border: 2px solid;
    font-weight: bold;
    border-color: var(--primary-colour);
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 0.3rem;

}

/*about section*/
.about-us {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr;
    padding: 1rem;
}

.about-img {
    margin: auto;
    object-fit: fill;
}

.about-icons {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;

}

.flex-box {
    display: flex;
    flex-direction: row;

}


/* apps section */


.purble-box {
    padding: 3rem;
    color: var(--text-white);
    text-align: center;
}

.app-detail {
    margin-top: 1vh;
}

.app-text {
    text-align: center;
    justify-content: center;
}

.purble-box-txt {

    margin-top: 1rem;
    color: var(--text-white) !important;
}

.app-artical {
    /*background-color: #0f0f0f00;*/
    color: var(--text-white);
    margin: 0;
    padding: 0;
}

.app-txtbox {
    margin-bottom: 2rem;

}

.card-section {

}

.card {
    display: flex;
    text-align: left;
    padding: 1rem;
}

.card:hover {
    background-color: var(--primary-colour);
    transition: all 1s;
}

.app-icons {
    max-width: 60px;
    margin: 1rem;
}

.card-txt-header {
    color: var(--text-white);
    font-size: medium;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.card-txt {
    margin: 0rem !important;
    color: var(--text-white);
    font-size: small !important;
}

.card-txt-header-dark {
    color: var(--text-dark) !important;
    font-size: medium;
    font-weight: bold;
}

.card-txt-dark {
    margin: 0rem !important;
    color: var(--text-dark);
    font-size: small !important;
}

/* Services area */

.wearos-image {
width: 350px;
}
.section-padding {
    padding: 2rem 5rem 5rem;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;
    justify-content: space-evenly;
gap: 1rem;
}

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

.services-icon {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 1rem;
    font-size: 5rem;
    color: var(--primary-colour);
}

.app-card {
    display: flex;
    flex-flow: column;
    text-align: left;
    padding: 0.5rem;
    justify-content: start;

}

.app-card:hover {
    transform: scale(110%);
    transition: all 1s;
}

.app-card h4{
    margin-top: 1rem;
    font-weight: bold;
    font-size: 13pt;
}

.app-card p {
    margin-top: 0.25rem;
}
.services-card-txt-header {
    color: var(--text-dark) !important;
    font-size: medium;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}

.services-card-txt {
    color: var(--text-dark);
    font-size: small !important;
    margin: 0 3rem 0 3rem;
}

.dark-bg {
    background-color: var(--secondry-bg-color);
}

.dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg p{
    color: var(--text-white);
}

/*mobile apps */
.apps-section {

}

.heading-area {
    justify-items: center;
    padding: 1rem;
}

.text-light {
    color: var(--text-white);
}

/* contact */
#contact {
    background-image: url(/imgs/BLackBg.png);
    min-width: 100%;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.contact-txt {
    color: var(--text-light-grey);
}

.contact-icon {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    }

.social-icon {

    justify-content:  center;
    border-color: var(--text-white);
    font-size: 25pt;
    border-radius: 50%;
    border-style: solid;
    padding: 1rem;
    margin: 1rem;
    transition: all 0.2s;
}

.social-icon:hover {
    border-color: var(--primary-colour);
}

footer {
    background-color: var(--text-dark);
    padding: 2rem;
    /*margin-top: 1rem;*/
}

#footer {
    margin: 1rem;
    min-width: 100%;
}

.footer-txt {
    font-size: small;
    color: var(--text-light-grey);
    display: flex;
    justify-content: center;
}
.footer-h{
    display:  flex;
    justify-content: center;
}

.footer-link {
    font-size: small;
    margin: 0.5rem;
    color: var(--text-light-grey);
transition: all 0.3s;
}

.footer-link:hover {
color: var(--primary-colour);
}

.contact{
    color: white;
}
.contact:hover{
    color: var(--primary-colour);
}
/* animation stuff */

@keyframes slideleft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);

        opacity: 1;
    }
}

#fade-in {
    animation: 2s fadein;
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slide-in {
    opacity: 0;
    transform: translateX(-100%);
    filter: blur(20px);
    transition: all 1.5s;
}

.slide-in-show {
    transform: translateX(0);
    filter: blur(0);
    opacity: 1;
}

.pop {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0%);
    transition: all 1.5s;
}

.pop-show {
    filter: blur(0);
    transform: scale(100%);
    opacity: 1;
}


.anim-delay:nth-child(1) {
    transition-delay: 0s;
}

.anim-delay:nth-child(2) {
    transition-delay: 0.5s;
}

.anim-delay:nth-child(3) {
    transition-delay: 1s;
}

.anim-delay:nth-child(4) {
    transition-delay: 1.5s;
}

.anim-delay:nth-child(5) {
    transition-delay: 2s;
}

.anim-delay:nth-child(6) {
    transition-delay: 2.5s;
}

.anim-delay:nth-child(7) {
    transition-delay: 3s;
}

.anim-delay:nth-child(8) {
    transition-delay: 3.5s;
}

.anim-delay:nth-child(9) {
    transition-delay: 4s;
}

.anim-delay:nth-child(10) {
    transition-delay: 4.5s;
}

.nav-burger-icon {
    font-size: x-large;
    color: var(--text-white);
    width: auto;
    transition: all 0.3s;
display: none;
}

.nav-burger-icon:hover {
    color: var(--primary-colour);
}

@media (max-width: 990px) {
    nav {
        display: flex;
        flex-direction: column;
    }
    .h-flex {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    .marg-lf-rt{
     margin-left: 0;
    }
    .navbar{
        padding: 1rem;
    }
    .nav-burger a {
        display: none;
    }

.nav-show a{
    display: block; !important;
}
    .nav-show  {
        transition: all 0.3s;
        display: flex !important;
        flex-direction: column ;
        position: absolute;
        align-items: flex-start;
        height: auto ;
        width:  auto;
        top: 5%;
        right: 0%;
        margin-top: 8vh;
        padding: 2rem;
        background-color: var(--secondry-bg-color);
        box-shadow: 0 5px 5px rgba(0,0,0,0.5);
}
    .nav-burger-icon {
        display: block;
    }
    .nav-mobile {
        display: flex;
        max-width: 100%;
        flex-flow: row;
        justify-content: space-between;
    }

    .menu-burger {
        width: 100%;
        /*background: var(--primary-colour);*/
        background-color: orange;
        display: flex;
        justify-content: center;
        text-align: right;
    }

    .hero-grid{
        display: flex;
flex-direction: column;
        padding-right: 0;

    }

    .hero-text-box{
        margin-top: 2rem;
        align-items: center;
    }
    .hero-img{
        object-fit: contain;
        max-height: 512px;
        margin-top: 1rem;
        margin-right: 0%;

    }

    .about-us{
        display: flex;
        flex-direction: column;
    }
    .about-icons{
        max-width:  100%;

    }
    .about-icons img{

        object-fit: cover;
        max-height:  150px;
    }

    .app-grid{
        display: flex;
        flex-direction: column;
    }

}
