* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --vw-1920: calc(100vw / 1920);
}

img {
    width: 100%;
    height: 100%;
}

input {
    all: unset;
}

.chose {
    color: #333333;
    background-color: #CFF50E;
    border-radius: calc(6 * var(--vw-1920));
}


.nav-list>div:hover,
.links:hover {
    cursor: pointer;
}

.links:hover {
    color: #000;
}

.nums {
    color: #418FFF;
    text-decoration: underline;
    margin-left: calc(5 * var(--vw-1920));
}

.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #0F2028;
}


.navigation {
    font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin: 0 calc(260 * var(--vw-1920));
    margin-right: calc(240 * var(--vw-1920));
    height: calc(84 * var(--vw-1920));
    /* width: calc(1400 * var(--vw-1920)); */
    font-size: calc(16 * var(--vw-1920));

}


.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(18 * var(--vw-1920));
    line-height: calc(25 * var(--vw-1920));
    font-weight: 600;
}

.logo>img {
    margin-right: calc(5 * var(--vw-1920));
    width: calc(48 * var(--vw-1920));
    height: calc(48 * var(--vw-1920));
}

.nav-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all 1s;
    font-size: calc(26 * var(--vw-1920));
    padding: calc(15 * var(--vw-1920)) 0;
    gap: calc(55 * var(--vw-1920));
}

.nav-list div {
    font-size: calc(18 * var(--vw-1920));
    line-height: calc(21 * var(--vw-1920));
    padding: calc(16 * var(--vw-1920)) calc(30 * var(--vw-1920));
}

.footer {
    background-color: #242424;
    padding: calc(80 * var(--vw-1920)) calc(260 * var(--vw-1920));
}

.footer>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.footer .link {
    font-size: calc(18 * var(--vw-1920));
    color: #FFFFFF;
    line-height: calc(21 * var(--vw-1920));
}

.footer .line {
    width: 100%;
    margin: calc(29 * var(--vw-1920)) 0;
}

.footer .Contact>div>div {
    display: flex;
    margin-bottom: calc(20 * var(--vw-1920));
    font-size: calc(16 * var(--vw-1920));
    color: #FFFFFF;
    line-height: calc(18 * var(--vw-1920));
}

.footer .Contact>div>div>img {
    width: calc(20 * var(--vw-1920));
    margin-right: calc(6 * var(--vw-1920));
}

.footer input {
    box-sizing: border-box;
    width: calc(296 * var(--vw-1920));
    height: calc(44 * var(--vw-1920));
    background-color: #fff;
    border-radius: calc(8 * var(--vw-1920));
    padding-left: calc(10 * var(--vw-1920));
    color: #000;
}

.footer .sub .subBtn {
    font-size: calc(16 * var(--vw-1920));
    color: #333333;
    line-height: calc(20 * var(--vw-1920));
    background-color: #CFF50E;
    width: calc(108 * var(--vw-1920));
    height: calc(38 * var(--vw-1920));
    align-items: center;
    justify-content: center;
    border-radius: calc(8 * var(--vw-1920));
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-list div {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-list div::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: #CFF50E;
    transition: left 0.3s ease;
}

.nav-list div:hover::before {
    left: 0;
}



.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: rotate(5deg);
}

.apply-btn,
.subBtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.apply-btn:hover,
.subBtn:hover,
.Btn:hover,
.Fbtn:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 245, 14, 0.3);
}

.apply-btn:active,
.subBtn:active {
    transform: translateY(0);
}


.cardList .card {
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.cardList .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cardList .card img {
    transition: all 0.3s ease;
}

.cardList .card:hover img {
    transform: scale(1.05);
}


.problemCaed1 {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.problemCaed2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.problemCaed3 {
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.banner {
    animation: slideInFromTop 1s ease-out;
}

.banner-text h1 {
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.banner-text p {
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.banner-text .apply-btn {
    animation: fadeInLeft 1s ease-out 0.7s both;
}

.ad {
    animation: fadeInRight 1s ease-out 0.5s both;
}


.Introduction {
    animation: fadeInUp 1s ease-out 0.8s both;
}


.problem .title {
    animation: fadeInUp 0.8s ease-out 1s both;
}

.problem .text {
    animation: fadeInUp 0.8s ease-out 1.2s both;
}


.Security {
    animation: fadeInUp 0.8s ease-out 1.4s both;
}


.footer {
    animation: fadeInUp 0.8s ease-out 1.6s both;
}


.footer input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(207, 245, 14, 0.3);
    transition: all 0.3s ease;
}


.footer .link>div {
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.footer .link>div:hover {
    color: #CFF50E;
}

@media (max-width: 768px) {
    .card {
        animation-duration: 0.6s;
    }

    .banner {
        animation-duration: 0.8s;
    }
}


.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(207, 245, 14, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.nav-list div.active {
    color: #CFF50E;
    background-color: rgba(207, 245, 14, 0.1);
    border-radius: calc(6 * var(--vw-1920));
}


.custom-cursor {
    mix-blend-mode: difference;
}

html {
    scroll-behavior: smooth;
}


.loading {
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}


.footer .sub .input {
    position: relative;
    transition: all 0.3s ease;
}

.footer .sub .input input {
    transition: all 0.3s ease;
}

.footer .sub .input.focused {
    transform: scale(1.02);
}



.footer .sub .subBtn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer .sub .subBtn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(207, 245, 14, 0.4);
}

.footer .sub .subBtn:not(:disabled):active {
    transform: translateY(0);
}

.footer .sub .subBtn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}



.footer .sub .subBtn.success {
    background-color: #4CAF50;
    transform: scale(1.05);
}


.success-message,
.error-message {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10000;
    max-width: 400px;
    opacity: 0;
    transition: all 0.3s ease;
}

.success-message.show,
.error-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.success-content,
.error-content {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
}

.success-content {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.error-content {
    background: linear-gradient(135deg, #F44336, #d32f2f);
    color: white;
}

.success-text,
.error-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 768px) {

    .success-message,
    .error-message {
        max-width: 90%;
        margin: 0 20px;
    }

    .success-content,
    .error-content {
        padding: 16px 20px;
    }

    .success-text,
    .error-text {
        font-size: 14px;
    }
}