@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");

/* Universals */

* {
    color: hsla(214, 15%, 91%);
    font-family: "Oxanium", sans-serif;
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background: #010314;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: rgba(106, 29, 248, 0.685);
    border-radius: 10rem;
}

.headline {
    border: 1px groove rgba(81, 26, 182, 0.521);
    border-radius: 50px;
    background-color: rgba(106, 29, 248, 0.2);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    animation: moveup 2s;
    transition: 0.4s all ease;
    cursor: default;
}

.headline:hover {
    border-color: rgb(106, 29, 248);

}

.headline h4 {
    margin: 0px;
    color: rgb(166, 134, 255);
    text-align: center;
    height: fit-content;
}

.headline i {
    color: rgb(150, 94, 255);
    margin-right: 0.5rem;
    font-size: 20px;
    display: flex;
}

#btn {
    text-decoration: none;
    padding: 8px 20px;
    text-align: center;
    border: 2px solid rgb(106, 29, 248);
    border-radius: 5px;
    transition: 0.5s all ease;
}

#btn:hover {
    background: rgb(106, 29, 248);
    box-shadow: 0 0 50px rgb(106, 29, 248);
}

/* Custom Animation */

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 0.5s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}


/* Mobile Navigation */

.mview {
    display: none;
}

.mview i {
    color: #fff;
    cursor: pointer;
    font-size: 30px;
}

#mnav {
    background: linear-gradient(45deg, rgba(106, 29, 248, 0.521), rgba(176, 39, 255, 0.411), rgba(49, 49, 252, 0.411));
    width: 100%;
    height: auto;
    z-index: 999999;
    display: none;
    padding: 100px 0;
    flex-direction: column;
    justify-content: space-evenly;
    transition: 0.5s all ease;
}


#mnav li {
    list-style-type: none;
    margin: 20px;
    text-align: center;
    transition: 0.5s all ease;
    animation: moveup 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mnav li a {
    background-color: #81818125;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s all ease;
    padding: 35px;
    width: 100%;

}

/* Desktop Navigation */

nav {
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 10vh;
    backdrop-filter: blur(3px);
    transition: 0.4s all ease;
    z-index: 9999999;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero img {
    height: 50px;
}

.hero h1 {
    text-align: center;
    letter-spacing: -1.5px;
    font-weight: bold;
}

nav ul {
    display: flex;
    justify-content: space-evenly;
    padding: 0;
}

nav ul li {
    list-style-type: none;
    margin: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li a {
    color: rgb(184, 172, 204);
    text-decoration: none;
    transition: 0.4s all ease;
    font-weight: 550;
    display: inline-block;
    position: relative;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: rgb(106, 29, 248);
    transition: transform 0.25s ease-out;
    transform-origin: bottom right;
}

nav ul li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.btn-divein {
    margin: 25px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Home Section */

#home {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: radial-gradient(rgba(106, 29, 248, 0.486) 1%,
            #010314 60%,
            #010314 60%);
    background-position: 0 500px;
    position: relative;
    opacity: 1;
    padding: 30vh 0;
}

#home h1 {
    text-align: center;
    font-size: 60px;
    width: 45%;
    margin: 0;
    letter-spacing: -2px;
    animation: moveup 2s;
}

#home p {
    text-align: center;
    width: 45%;
    letter-spacing: 2px;
    animation: moveup 2s;
}

#home span {
    background: -webkit-linear-gradient(45deg, rgb(106, 29, 248), rgb(138, 83, 170), rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* About Section */

#about {
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10vh 0;
}

#about h1 {
    font-size: 50px;
    text-align: center;
    margin: 0;
    animation: moveup 2s;
}

#about h1 span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#about p {
    width: 50%;
    text-align: center;
    letter-spacing: 2px;
    animation: moveup 2s;

}

#about .container {
    display: flex;
    width: 90%;
    height: auto;
    justify-content: space-evenly;
    margin-top: 20px;
}

#about .container .box {
    background-color: rgba(255, 255, 255, 0.024);
    border-radius: 12px;
    text-align: center;
    width: 25%;
    margin: 10px;
    padding: 30px 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    transition: 0.5s all ease;
    cursor: default;
}

#about .container .box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 80px rgb(106, 29, 248);
}

#about .container .box div {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100px;
    height: 100px;
    border-radius: 999px;
    background-color: rgba(106, 29, 248, 0.2);
    color: #a5d8ff;
    border: 1px solid transparent;
    cursor: default;

}

#about .container .box i {
    font-size: 40px;
    color: rgb(106, 29, 248);
    cursor: default;

}

#about .container .box h4 {
    font-size: 40px;
    margin: 10px;
    margin-top: 30px;
    cursor: default;

}

#about .container .box p {
    letter-spacing: 0px;
    text-align: center;
    width: 90%;
    color: grey;
    cursor: default;
    animation: none;
}

#about #about-btn {
    text-decoration: none;
    padding: 8px 20px;
    text-align: center;
    border-radius: 5px;
    transition: 0.5s all ease;
    background-color: rgba(106, 29, 248, 0.253);
    border: 1px solid rgb(106, 29, 248);
    margin: 30px;
    font-size: 25px;
    font-weight: 500;
}

#about #about-btn:hover {
    background: rgb(106, 29, 248);
    box-shadow: 0 0 80px rgb(106, 29, 248);
}

/* Services Section */

#services {
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 10vh 0;
}

#services h1 {
    font-size: 50px;
    text-align: center;
    margin: 0;
    animation: moveup 2s;
}

#services h1 span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .container {
    display: flex;
    width: 90%;
    height: auto;
    justify-content: space-evenly;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
}

#services .container .box {
    display: flex;
    justify-content: space-between;
    width: 70%;
    border-radius: 15px;
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(106, 29, 248, 0.336);
    transition: 0.5s all ease;
}

#services .container .box:hover {
    box-shadow: 0 0 80px rgb(106, 29, 248);
    transform: scale(1.05);
}

#services .container .box .box-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 50px;
}

#services .container .box img {
    height: 300px;
    border-radius: 15px;
}

#services .container .box .box-txt {
    width: 40%;
    margin: 20px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#services .container .box .box-txt span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services .container .box .box-txt h3 {
    margin: 0;
    font-size: 40px;
    cursor: default;
}

#services .container .box .box-txt p {
    letter-spacing: 2px;
    color: rgb(197, 197, 197);
    font-size: 15px;
    cursor: default;
}

/* Pricing Section */

#pricing {
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 10vh 0;

}

#pricing h1 {
    font-size: 50px;
    text-align: center;
    margin: 0;
    animation: moveup 2s;
}

#pricing h1 span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing .container {
    display: flex;
    width: 80%;
    height: auto;
    justify-content: space-evenly;
    margin-top: 30px;
    align-items: top;
}

#pricing .container .box {
    width: 25%;
    height: auto;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.024);
    border: 1px solid rgba(106, 29, 248, 0.336);
    transition: 0.5s all ease;
}

#pricing .container .box:hover {
    border: 1px solid rgb(106, 29, 248);

}

#pricing .container .box span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing .container .box h2 {
    font-size: 45px;
    margin: 0;
}

#pricing .container .box ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    flex-direction: column;
    margin-bottom: 30px;
}

#pricing .container .box a {
    background-color: rgba(106, 29, 248, 0.253);
}

#pricing .container .box a:hover {
    background: rgb(106, 29, 248);
    box-shadow: 0 0 80px rgb(106, 29, 248);
}

#pricing .container .box ul p {
    font-weight: 700;
    margin-bottom: 10px;
}

#pricing .container .box ul li {
    list-style-type: none;
    text-align: left;
    margin: 5px;
    color: rgb(202, 202, 202);
}

#pricing .container .box ul li i {
    margin-right: 5px;
    color: rgb(106, 29, 248);
}

/* Support Section */

#support {
    height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 10vh 0;
}

#support h1 {
    font-size: 50px;
    text-align: center;
    margin: 0;
    animation: moveup 2s;
}

#support h1 span {
    background: -webkit-linear-gradient(45deg,
            rgb(106, 29, 248),
            rgb(138, 83, 170),
            rgb(93, 93, 252));
    background-clip: content-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#support .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 50px;
    margin-top: 100px;
}

#support .container .left {
    display: flex;
    justify-content: center;
    align-items: center;
}

#support .container .left ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    align-items: left;
    flex-direction: column;
}

#support .container .left li {
    display: flex;
    justify-content: left;
    align-items: center;
    list-style-type: none;
    margin: 20px;
    font-weight: 700;
    cursor: default;
}

#support .container .left li div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    background-color: rgba(106, 29, 248, 0.2);
}

#support .container .left li div img {
    height: 45px;
    width: 45px;
}

#support .container .left li div i {
    font-size: 40px;
    color: rgb(106, 29, 248);
}

#support .container .left li a {
    text-decoration: none;
    margin-left: 5px;
    transition: 0.4s all ease;
    font-weight: 400;
    font-size: 20px;
    color: rgb(184, 172, 204);
    transition: 0.3s all ease;

}

#support .container .left li a:hover {
    color: rgb(93, 93, 252);
}

#support .container .right {
    display: flex;
    justify-content: center;
    align-items: center;
}

#support-form {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    margin: 20px;
}

.form-group,
.form-message {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
}

.form-group input,
.form-message textarea {
    width: 100%;
    margin: 5px;
    padding: 10px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(106, 29, 248, 0.281);
    border-radius: 5px;
    font-weight: 500;
    transition: 0.4s all ease;
}

.form-group input:focus,
.form-group input:hover,
.form-message textarea:focus,
.form-message textarea:hover {
    border-color: rgb(106, 29, 248);

}

.form-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.form-buttons button {
    background-color: rgba(106, 29, 248, 0.486);
    font-size: 18px;
    cursor: pointer;
}

/* Footer Section */

footer {
    height: auto;
    display: flex;
    justify-content: space-evenly;
    color: #fff;
    flex-direction: column;
    background-color: #010314;
    border-top: 1px solid rgba(128, 128, 128, 0.459);

}

footer img {
    border-radius: 20px;
}

footer .upper {
    display: flex;
    justify-content: space-evenly;
    padding: 100px;
    padding-bottom: 100px;
}

footer .lower {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    padding: 30px;
    border-top: 1px solid rgba(128, 128, 128, 0.212);
}

footer .lower p {
    margin: 0;
}


footer .box {
    display: flex;
    justify-content: top;
    flex-direction: column;
}

footer .box img {
    height: 200px;
    transform: scale(1.5);
}

footer .box h3 {
    font-weight: 1000;
    margin-bottom: 20px;
}

footer .box p {
    color: grey;
}

footer .box a {
    color: rgb(145, 140, 140);
    text-decoration: none;
    margin-bottom: 12px;
    width: fit-content;
}

footer .box a:hover {
    color: rgb(106, 29, 248);
}


/* Custom Animation */
@keyframes moveup {
    0% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);

    }

}
#team {
    height: 100vh;
}
#team .headline {
    border: 1px groove rgba(81, 26, 182, 0.521);
    border-radius: 50px;
    background-color: rgba(106, 29, 248, 0.2);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    animation: moveup 2s;
    transition: 0.4s all ease;
    cursor: default;
}

#team .headline:hover {
    border-color: rgb(106, 29, 248);

}
#team .headline h4 {
    margin: 0px;
    color: rgb(166, 134, 255);
    text-align: center;
    height: fit-content;
}
#team .headline i {
    color: rgb(150, 94, 255);
    margin-right: 0.5rem;
    font-size: 20px;
    display: flex;
}

.team-logo img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
}