* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    color: #ededed;
    height: 500vh;
    background: #081b29;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #031129;
}

.logo {
    font-weight: 600;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    position: relative;
    cursor: default;
    opacity: 0;
    animation: slideright 1s ease forwards;
}

@keyframes slideright {
    0% {
        transform: translatex(-100px);
        opacity: 0;
    }

    100% {
        transform: translatex(0px);
        opacity: 1;
    }
}

.nav a {
    color: white;
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-size: 1.3rem;
    font-weight: 600;
    margin-left: 35px;
    display: inline-block;
    animation: slidetop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}


@keyframes slidetop {
    0% {
        transform: translatey(-100px);
        opacity: 0;
    }

    100% {
        transform: translatey(0px);
        opacity: 1;
    }
}

.nav a:hover {
    color: #0ef;
}

.home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #081b28;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 10px 10% 0;
    letter-spacing: 2px;
}

.home-content {
    max-width: 600px;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    animation: slidebottom 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes slidebottom {
    0% {
        transform: translatey(-100px);
        opacity: 0;
    }

    100% {
        transform: translatey(0px);
        opacity: 1;
    }
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0;
    opacity: 0;
    animation: slideright 1s ease forwards;
}

.home-content p {
    font-size: 20px;
    opacity: 0;
    animation: slideleft 1s ease forwards;
    animation-delay: 1s;
}

@keyframes slideleft {
    0% {
        transform: translatex(100px);
        opacity: 0;
    }

    100% {
        transform: translatex(0px);
        opacity: 1;
    }
}

.home-content h3 span {
    color: #0ef;
}

.home-content p {
    margin-top: 30px;
    animation: slidetop 1s ease forwards;
    animation-delay: 0.7s;
}

.home-sci a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    text-decoration: none;
    font-size: 22px;
    text-decoration: none;
    color: white;
    margin: 30px 15px 30px 0;
    transform: 0.5s ease;
    opacity: 0;
    animation: slideleft 1s ease forwards;
    animation-delay: calc(0.2*var(--i));
}

.home-sci a:hover {
    background: #0ef;
    color: black;
    box-shadow: 0 0 20px #0ef;
}


/* botton */

.btn-box {
    padding: 12px 28px;
    cursor: pointer;
    background: #0ef;
    font-size: 16px;
    border-radius: 40px;
    display: inline-block;
    color: #081b29;
    letter-spacing: 1px;
    animation: slidetop 1s ease forwards;
    animation-delay: 0.5 s;
    box-shadow: 0 0 5px #0ef, 0 0 10px #0ef;
    border: none;
    font-weight: 600;
}

.btn-box:hover {
    box-shadow: 0 0 5px cyan, 0 0 10px cyan,
        0 0 15px cyan, 0 0 20px cyan;

}

/* About sectoion */

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 1.5rem;

}

.about-img img {
    padding-bottom: 20%;
    max-width: 630px;
    height: auto;
    width: 100%;
    border-radius: 8px;

}

.about-text h2 {
    font-size: 60px;

}

.about-text h2 span {
    color: #0ef;

}

.about-text h4 {
    font-size: 29px;
    font-weight: 600;
    color: #fff;
    line-height: 1.7;
    margin: 15px 0 38px;
}

.about-text p {
    color: aliceblue;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    margin-right: 30px;

}

/* servises */

.container {
    padding: 10px;
}

#services {
    color: aliceblue;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.sub-title {
    text-align: center;
    padding-bottom: 70px;
    font-size: 60px;
    margin-top: 50px;
}

.sub-title span {
    color: #0ef;
}

.services-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 30px;

}

.services-list div {
    background-color: transparent;
    font-size: 15px;
    font-weight: 600;
    padding: 20px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
    box-shadow: 1px 1px 20px #012290f7, 1px 1px 40px #012290f7;
}

.services-list div:hover {
    transform: translatey(-20px);
    transition: all ease 0.2s;
}

.services-list div p {
    width: 25vw;
    margin-bottom: 20px;
}

.services-list div i {
    font-size: 50px;
    margin-bottom: 20px;

}

.services-list div h2 {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 600;

}

.services-list div a {
    color: black;
    font-size: 12px;
    text-decoration: none;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.read {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: black;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slidetop 1s ease forwards;
    animation-delay: 2px;
    box-shadow: 0 0 5px #0ef, 0 0 25px #0ef;
}

.read:hover {
    background: #0ef;
    color: black;
    box-shadow: 0 0 20px #0ef;
}

