:root {
    --accent-blue: #00f6ff;
    --text-secondary: #9ca3af;
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow-color: rgb(6 182 212 / 0.2);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    --tw-shadow: var(--tw-shadow-colored);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    font-family: "Rubik", sans-serif;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --gutter: clamp(16px, 2vw + 8px, 32px);
}

.container {
    padding-inline: calc(var(--gutter) + env(safe-area-inset-left, 0px));
    padding-inline: calc(var(--gutter) + env(safe-area-inset-right, 0px));
    margin-inline: auto;
    width: 100%;
    max-width: none;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1520px;
    }
}

.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding-inline: calc(var(--gutter) + env(safe-area-inset-left, 0px));
    padding-inline: calc(var(--gutter) + env(safe-area-inset-right, 0px));
}

a {
    color: #fff;
}

body {
    background: #0A0F1A;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/*desctop*/
.logo {
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
    font-size: 24px;
    font-weight: bold;
    width: 150px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: invert(1) drop-shadow(0 0 5px var(--accent-blue));
}

header {
    position: fixed;
    transition: 0.3s all ease-in-out;
    z-index: 9999;
}

header.active {
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#descMenu {
    padding-block: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#descMenu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 30px;
}

#descMenu ul a {
    transition: 0.3s all ease-in-out;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
}

#descMenu ul a:hover {
    color: #fff;
}

.lang {
    display: flex;
    align-items: center;
    overflow:hidden;
    gap: 20px;
    transition: 0.3s all ease-in-out;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue), inset 0 0 5px var(--accent-blue);
    font-size: 14px;
    border-radius: 100px;
    overflow: hidden;
    padding-block: 4px;
}

#descMenuRight {
    display: flex;
    align-items: center;
    gap: 30px;
}

#descMenuRight > a {
    color: #fff;
    transition: 0.3s all ease-in-out;
    font-size: 14px;
    text-transform: uppercase;
}

.lang a {
    display: inline-block;
    padding: 2px 15px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.lang a.active{
    text-decoration: underline;
    text-underline-offset: 5px;
    color:#00f6ff;
}
#descMenuRight button {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}
#bannerContentWrapper {
    position: relative;
    z-index: 99;
}
#bannerBox {
    width: 800px;
    margin: auto;
    position: relative;
    padding-top: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#bannerWrapper {
    height: 100vh;
    width: 100%;
    position: relative;
}
#bannerOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}
#bannerOverlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0007;
    z-index: 2;
    pointer-events: none;
}
#bannerVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#bannerWrapper h1 {
    font-size:3.5rem;
    display: flex;
    flex-direction: column;
    font-weight: 900;
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.2;
}

#bannerBox a {
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue), inset 0 0 5px var(--accent-blue);
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.25rem;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

#bannerBox a:hover {
    background: var(--accent-blue);
    color: #000;
    box-shadow: 0 0 15px var(--accent-blue), 0 0 25px var(--accent-blue);
}

#bannerLayout {
    position: absolute;
    top: 10%;
    z-index: -1;
    left: 0;
    width: 100%;
    height: 100%;
}

#bannerLayout img {
    background-blend-mode: multiply;

}

#bannerBox p {
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    margin-bottom: 25px;
}

#pWrapper {
    padding-top: 120px;
}

.topCenter {
    text-align: center;
}

.topCenter h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
}

.topCenter p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

#pCards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.pCard {
    width: 23%;
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 10px;
    background: #101623;
    padding: 20px;
    transition: 0.3s all ease-in-out;
    height: 280px;
}

.pCardIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: #ec48991a;
    text-align: center;
    line-height: 60px;
    margin-bottom: 30px;
}

.pCard h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pCard p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.pCard:hover {
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    transform: translateY(-5px);
}

.mTop {
    margin-top: 160px;
}

#cWrapper {
    padding-block: 80px;
    background: #0D121F;
}

#cWrapper h3 {
    text-align: center;
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
    font-size: 36px;
    text-transform: uppercase;
}

#cCards {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cCard {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1060px;
    width:100%;
    position: relative;
    background-color: rgba(26, 35, 57, 0.67);
    border-radius: 24px;
    padding: 32px;
}

.cCardWrapperLeft,
.cCardWrapperRight {
    display: flex;
    width: 100%;
}

.cCardWrapperRight {
    justify-content: right;
    width: 100%;
}

.cCardWrapperLeft {
    justify-content: left;
}

.cCard div {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 16px;
}

.cCard span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background: #101623;
    border: 1px solid var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue), inset 0 0 5px var(--accent-blue);
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

.cCard h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 28px;
}

.cCard p {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

#cSect {
    background: #0D121F;
}

#contactWrapper {
    padding-block: 80px;
    margin: auto;
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
}

#contactWrapper h3 {
    text-align: center;
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
    font-size: 36px;
    text-transform: uppercase;
}
#contactRight h3 {
    font-size: 32px;
}
#contactWrapper p {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 10px;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.5;
}

#contactWrapper form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
}

#contactWrapper form input,
#contactWrapper form textarea {
    width: 100%;
    background: #101623;
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    resize: none;
}

#contactWrapper form textarea {
    min-height: 150px;
}

#contactWrapper form input::placeholder,
#contactWrapper form textarea::placeholder {
    color: var(--text-secondary);
}

#contactWrapper .btn {
    padding: 15px 20px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff80;
    text-shadow: none;
    cursor: pointer;
    border: 1px solid #ffffff80;
    transition: 0.5s ease;
    user-select: none;
    width: 100%;
    margin-top: 20px;
    background: #fff;
    color: #000;
}
#contactRight {
    display: flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
}
#contactWrapper .btn:hover,
#contactWrapper .btn:focus {
    color: #ffffff;
    background: #008cff;
    border: 1px solid #008cff;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff;
    box-shadow: 0 0 5px #008cff, 0 0 20px #008cff, 0 0 50px #008cff,
    0 0 100px #008cff;
}

#targetLinks {
    display: flex;
    align-items:center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content:center;
}
#contactLeft,
#contactRight{
    width: 49%;
}

#targetLinks a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    gap: 10px;
    transition: 0.3s all ease-in-out;
    background: #fff;
}
#targetLinks a:hover {
    transform: translateY(-5px);
    border-radius: 12px;
}

#targetLinks a svg path {
    fill: #fff;
}

#adWrapper {
    padding-block: 80px;
}

#adWrapper h3 {
    text-align: center;
    text-shadow: 0 0 5px var(--accent-blue), 0 0 10px var(--accent-blue);
    font-size: 36px;
    text-transform: uppercase;
}

#adCards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
    row-gap: 20px;
}

.adCard {
    width: 49%;
    border: 1px solid rgba(0, 246, 255, 0.2);
    border-radius: 10px;
    background: #101623;
    padding: 20px;
    display: flex;
    flex-wrap:wrap;
    align-items: center;
    gap: 30px;
    transition: 0.3s all ease-in-out;
}

.adCard:hover {
    transform: translateY(-5px);
    border-color: #BB80AC;
}

.adCard h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.adCard p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.adCard div {
    max-width: 70%;
}

.adCardIcon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: #ec48991a;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-blue);
}

#fixedSocials {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#fixedSocialIcon {
    background: #fff;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

#openModal {
    position: absolute;
    left: 0px;
    width: fit-content;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 5px var(--accent-blue), inset 0 0 5px var(--accent-blue);
    font-size: 16px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    opacity: 0;
    pointer-events: none;
}

#openModal.active {
    left: -280px;
    opacity: 1;
    pointer-events: auto;
}

#modalWrapper {
    width: 600px;
    background: #fff;
    color: #000;
    position: fixed;
    padding: 30px;
    border-radius: 12px;
    top: -200%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    transition: 0.3s all ease-in-out;
}

#modalWrapper.active {
    top: 50%;
    opacity: 1;
}


#closeModal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}

#modalWrapper form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#modalForm h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

#modalForm p {
    font-size: 16px;
    color: #666;
    text-align: center;
}

#modalForm input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#modalForm textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: none;
    min-height: 100px;
}

#modalForm button {
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#modalForm button:hover {
    background: #0056b3;
}

#socialsWrapper {
    position: absolute;
    top: -60px;
    transform: translateY(115%);
    z-index: 99;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    pointer-events: none;
    gap: 15px;
    align-items: center;
    opacity: 0;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

#socialsWrapper.active {
    transform: translateY(0%);
    opacity: 1;
    pointer-events: auto;
}

#socialsWrapper a {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s all ease-in-out;
}

#socialsWrapper a:nth-child(1) {
    background: #00B5FF;
}

#socialsWrapper a:nth-child(2) {
    background: #39AE41;
}

#socialsWrapper a:nth-child(3) {
    background: #039BE5;
}

.buttonSocials {
    cursor: pointer;
    border: none;
    background: #2aabee;
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: grid;
    place-content: center;
    transition: background 300ms, transform 200ms;
    font-weight: 600;
}

.button__text {
    position: absolute;
    inset: 0;
    text-transform: uppercase;
    animation: text-rotation 8s linear infinite;

    > span {
        position: absolute;
        transform: rotate(calc(20deg * var(--index)));
        inset: 7px;
    }
}

.button__circle {
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    background: #212121;
    color: #2aabee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button__icon--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.buttonSocials:hover {
    background: #000;
    transform: scale(1.05);
}

.buttonSocials:hover .button__icon {
    color: #fff;
}

.buttonSocials:hover .button__icon:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.buttonSocials:hover .button__icon--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}

@keyframes text-rotation {
    to {
        rotate: 360deg;
    }
}

.buttonSocials:active {
    transform: scale(0.95);
}


