* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Nunito Sans", sans-serif !important;
}

:root {
    --gradient-color: linear-gradient(to right, #4f46e5, #c026d3);
    --body-bg-color: #02070d;
    --text-color: #fff;
    --border-color: #1c1c1c;
    --primary-color: #4f46e5;
    --primary-opacity: #4e46e556;
    --error-border: #eb090987;
    --card-bg-color: #0000002b;
    --paragraph-color: #a6a6a6;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
}

.main_body {
    background-color: var(--body-bg-color);
    color: var(--text-color);
}

.custom_container {
    width: 1320px;
    margin: 0 auto;
}

a {
    color: var(--text-color) !important;
    text-decoration: none !important;
}


/* nav-section-css */
.nav_section {
    width: 100%;
}

.nav_relative {
    width: 100%;
    height: auto;
    position: relative;
}

.nav_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 0.3s;
}

.stickyNav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.stickyNav .nav_flex {
    backdrop-filter: blur(10px);
}

.nav_flex .logo {
    font-size: 28px;
    font-weight: 700;
    background-image: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.nav_flex .logo img {
    width: 140px;
    height: auto;
}

.nyflextec_menu ul {
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
    gap: 35px;
}

.nyflextec_menu ul li {
    display: inline-block;
}

.nyflextec_menu ul li a {
    color: var(--paragraph-color) !important;
    font-size: 15px;
    transition: all 0.3s;
}

.nyflextec_menu ul li a:hover {
    color: var(--text-color) !important;
}

.right_btn_menu a {
    width: auto;
    height: 42px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 30px;
    background-color: var(--body-bg-color);
    color: var(--text-color);
    font-size: 13px;
    line-height: 13px;
    border: 0.5px solid var(--primary-color);
    transition: all 0.5s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;

    &:hover {
        background-color: var(--primary-color);
    }
}

.right_btn_menu a i {
    padding-right: 5px;
}

.menu_for_mobile{
    display: none;
}


/* nav-absolute */
.product_nav {
    width: 70%;
    height: auto;
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: var(--body-bg-color);
    border-radius: 25px;
    padding: 30px 30px;
    border: 1px solid var(--border-color);
}

.product_nav h6 {
    font-size: 13px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: 600;
}

.products_flex {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 25px;
}

.products_Wrapper {
    width: 50%;
    padding-right: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.products_ico {
    width: 13%;
}

.products_ico span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-opacity);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_cnt {
    width: 87%;
}

.product_cnt h3 {
    font-size: 17px;
    color: var(--text-color);
    margin-bottom: 0px;
    font-weight: 600;
}

.product_cnt p {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
    line-height: 17px;
    padding-top: 5px;
}








/* banner-content */
.banner_section {
    width: 100%;
    height: auto;
}

.banner_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding-top: 15%;
    padding-bottom: 18%;
    width: 100%;
    position: relative;
}

.banner_content .project_btn {
    padding: 15px 40px;
    background-color: var(--body-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 45px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    position: relative;
    transition: all 0.5s;
}

.banner_content .project_btn::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: var(--gradient-color);
    z-index: -1;
    border-radius: 45px;
    filter: blur(12px);
    transition: all 0.5s;
}

.banner_content .project_btn:hover::after {
    filter: blur(18px);
}

.banner_content .project_btn i {
    padding-left: 5px;
}

.banner_content h4 {
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 0px;
    width: 100%;
}

.banner_content h4 span {
    background-image: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.banner_content p {
    font-size: 18px;
    margin-bottom: 0px;
    font-weight: 400;
    width: 80%;
}

.left_gradient {
    position: absolute;
    top: 26%;
    left: -11%;
    width: 35%;
    height: 32%;
    border-radius: 51%;
    background-image: var(--gradient-color);
    filter: blur(180px);
    z-index: -1;
    opacity: 0.75;
    animation: rotateLeft 12s linear infinite;
}

@keyframes rotateLeft {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.right_gradient {
    position: absolute;
    bottom: 9%;
    right: -7%;
    width: 35%;
    height: 32%;
    border-radius: 51%;
    background-image: var(--gradient-color);
    filter: blur(180px);
    z-index: -1;
    opacity: 0.75;
    animation: rotateRight 12s linear infinite;
}

@keyframes rotateRight {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}


/* technology-section */
.technology_section {
    margin-bottom: 100px;
}

.scroll-container {
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
}

.scroll_content {
    display: inline-flex;
}


.scroll_language {
    min-width: 180px;
    height: 55px;
    color: var(--paragraph-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.scroll_language img {
    width: 40px;
    margin-right: 10px;
}

/* section-heading */
.section_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.section_heading h4 {
    font-size: 48px;
    font-weight: 700;
    width: 66%;
    margin-bottom: 0px;
}

.section_heading h4 span {
    background-image: var(--gradient-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section_heading p {
    font-size: 18px;
    font-weight: 400;
    width: 70%;
    margin-bottom: 0px;
}

.section_heading .sec_icon {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-opacity);
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 20px;
}

.section_heading .sec_icon small {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    margin-right: 12px;
}

/* about_section */
.about_section {
    width: 100%;
    height: auto;
}

.about_contant {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
    justify-content: space-between;
}

.abt_left {
    width: 40%;
    height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.abt_left h3 {
    font-size: 26px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0px;
}

.abt_left p {
    margin-bottom: 0px;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
    padding-top: 17px;
}

.abt_right {
    width: 55%;
    height: auto;
    display: flex;
    justify-content: space-between;

}

.abt_img {
    width: 50%;
}

.abt_img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 15px;
}

.abt_cnt {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.abt_cnt p {
    margin-bottom: 0px;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.abt_cnt p .bold_txt {
    color: var(--text-color);
}

.abt_cnt a {
    display: inline-block;
    width: 180px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 30px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.choose_container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 1px solid var(--primary-opacity);
}

.choose_container .choose_card {
    width: 50%;
    padding: 0px 20px;
    height: 60px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.choose_container .choose_card:first-child,
.choose_container .choose_card:nth-child(2) {
    border-bottom: 1px solid var(--primary-opacity);
}

.choose_container .choose_card:first-child,
.choose_container .choose_card:nth-child(3) {
    border-right: 1px solid var(--primary-opacity);
}

.choose_container .choose_card h4 {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0px;
}



/* service_section */
.service_section {
    width: 100%;
    height: auto;
    padding-top: 150px;
}

.service_cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 70px;
}

.service_cards .ser_card:nth-child(1) {
    border-bottom: 1px solid var(--border-color);
}

.service_cards .ser_card:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.service_cards .ser_card:nth-child(3) {
    border-bottom: 1px solid var(--border-color);
}

.service_cards .ser_card:nth-child(4),
.service_cards .ser_card:nth-child(5) {
    border-right: 1px solid var(--border-color);
}

.ser_card {
    width: 33.33%;
    padding: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 400px;
    text-align: center;
}

.ser_card img {
    width: 40px;
    height: auto;
}

.ser_card .card_cnt h4 {
    font-size: 22px;
    color: var(--text-color);
    font-weight: 600;
    padding-top: 30px;
    width: 56%;
    text-transform: uppercase;
    margin: 0 auto;
}

.ser_card .card_cnt p {
    margin-bottom: 0px;
    padding-top: 17px;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
}

/* product_section */
.product_section {
    width: 100%;
    height: auto;
    padding-top: 150px;
}

.software_cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left_card_wrapper,
.right_card_wrapper {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.margin_cards {
    margin-top: 50px;
    margin-bottom: 20px;
}

.mar_top {
    margin-top: 20px;
}

.product_card_full {
    width: 100%;
    height: 790px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-image: url(../images/card-gradient.webp);
    background-position: 50%;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 30px;
    cursor: pointer;
}

.product_card_full img {
    width: 200%;
    height: auto;
    position: absolute;
    bottom: -20%;
    left: 10%;
    border-radius: 20px;
}

.cnt_wrapper h4 {
    margin-bottom: 0px;
    font-size: 20px;
    color: var(--text-color);
    font-weight: 600;
}

.cnt_wrapper p {
    margin-bottom: 0px;
    padding-top: 8px;
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.product_card_half {
    width: 100%;
    height: 385px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background-image: url(../images/card-gradient.webp);
    background-position: 50%;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 30px;
    cursor: pointer;
}

.product_card_half img {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -35%;
    left: 10%;
    border-radius: 20px;
}

/* install-process */
.intall_process_section {
    width: 100%;
    height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
}

.install_process {
    width: 70%;
    margin: 70px auto 0px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.install_process .process_step:first-child,
.install_process .process_step:nth-child(3) {
    border-right: 1px solid var(--border-color);
}

.install_process .process_step:first-child,
.install_process .process_step:nth-child(2) {
    border-bottom: 1px solid var(--border-color);
}

.process_step {
    width: 50%;
    height: 350px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.process_content span {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-opacity);
    color: var(--text-color);
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.process_content h4 {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 0px;
    padding-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.process_content p {
    color: var(--paragraph-color);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 10px;
}

/* contact-section */
.contact_section {
    width: 100%;
    height: auto;
    padding-bottom: 150px;
    padding-top: 80px;
}

.contact_card {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    border: 1px solid var(--border-color);
    border-radius: 35px;
    background-image: url(../images/card-gradient.webp);
    background-position: 50%;
    background-size: cover;
    padding: 45px 100px;
}

.contact_card h3 {
    font-size: 35px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}

.contact_card p {
    font-size: 17px;
    color: var(--paragraph-color);
    text-align: center;
    margin-bottom: 0px;
    padding-top: 10px;
}

.form_container {
    width: 60%;
    margin: 0 auto;
    padding-top: 25px;
}

.input_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.form_container input {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-opacity);
    padding-left: 10px;
    outline: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

.form_container input:-webkit-autofill {
    background-color: transparent !important;
    color: var(--text-color) !important;
}

.form_container .input_flex input {
    width: 48% !important;
}

.form_container input::placeholder {
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.form_container textarea {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-opacity);
    padding-left: 10px;
    outline: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    padding-top: 8px;
    resize: none;
}

.form_container textarea::placeholder {
    font-size: 16px;
    color: var(--paragraph-color);
    font-weight: 500;
}

.form_container button {
    width: 25%;
    height: 45px;
    margin-top: 15px;
    border-radius: 15px;
    border: none;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

/* footer-section */
.footer_relative {
    width: 100%;
    height: auto;
    position: relative;
}

.circle_round {
    width: 100%;
    height: auto;
    position: absolute;
    top: -27%;
    left: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle_animation {
    width: 340px;
    height: auto;
    animation: circleRound 12s linear infinite;
}

@keyframes circleRound {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

.footer_relative::after {
    position: absolute;
    content: '';
    width: 22%;
    height: 27%;
    border-radius: 50%;
    background-color: var(--primary-color);
    filter: blur(120px);
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -9;
}

footer {
    width: 100%;
    height: auto;
    backdrop-filter: blur(20px);
    margin-top: 170px;
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-color);
}

.footer_left {
    width: 40%;
}

.footer_left img {
    width: 120px;
    height: auto;
}

.footer_left p {
    width: 68%;
    color: var(--paragraph-color);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 0px;
    padding-top: 15px;
}

.footer_right {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.footer_menu h6 {
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0px;
}

.footer_menu ul {
    padding-top: 15px;
    padding-left: 0px;
    margin-bottom: 0px;
    list-style: none;
}

.footer_menu ul li {
    display: block;
    padding-top: 7px;
    padding-bottom: 7px;
}

.footer_menu ul li a {
    color: var(--paragraph-color) !important;
    font-size: 16px;
    font-weight: 500;
}

.footer_menu ul li a i {
    padding-right: 4px;
}

.footer_copyright {
    padding-top: 30px;
}

.footer_copyright small {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-bottom: 0px;
    display: block;
    text-align: center;
}

.footer_logo {
    width: 100%;
    height: 195px;
    overflow: hidden;
    text-align: center;
}

.footer_logo h1 {
    font-size: 198px;
    font-weight: 800;
    text-transform: capitalize;
    -webkit-text-stroke: 1px var(--primary-opacity);
    color: transparent;
}












/* register-page */
.register_section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.register_section small {
    font-size: 14px;
    color: var(--paragraph-color);
    margin-top: 8px;
}

.register_card {
    width: 52%;
    margin-left: auto;
    margin-right: auto;
    min-height: 600px;
    border: 1px solid var(--border-color);
    border-radius: 35px;
    background-image: url(../images/card-gradient.webp);
    background-position: 50%;
    background-size: cover;
    /* padding: 85px 100px; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register_card .back_home {
    position: absolute;
    top: 15px;
    left: 30px;
    font-size: 15px;
    font-weight: 500;
}

.form_heading img {
    text-align: center;
    width: 120px;
    height: auto;
    margin-bottom: 5px;
}

.form_heading h3 {
    font-size: 35px;
    color: var(--text-color);
    font-weight: 600;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.form_heading p {
    font-size: 17px;
    color: var(--paragraph-color);
    text-align: center;
    margin: 0 auto;
    padding-top: 10px;
    width: 70%;
}

.register_form {
    width: 55% !important;
    margin: 0 auto;
    padding-top: 45px;
}

.register_form .input_grp {
    margin-bottom: 15px;
}

.register_form .input_grp small,
#errorPassword,
#errorConPassword {
    font-size: 14px;
    color: var(--error-border);
    padding-top: 3px;
    font-weight: 500;
    margin-top: 0px;
    display: block;
    text-align: left;
    width: 50%;
}

#errorPassword,
#errorConPassword {
    margin-top: -15px;
    margin-bottom: 10px;
}

.register_form input {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    background-color: transparent;
    border: 1px solid var(--primary-opacity);
    padding-left: 10px;
    outline: none;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    font-family: "Nunito Sans", sans-serif !important;
}

.register_form input::placeholder {
    font-size: 15px;
    color: var(--paragraph-color);
    font-weight: 500;
    font-family: "Nunito Sans", sans-serif !important;
}

.register_form .buton_type {
    width: 35%;
    height: 45px;
    margin-top: 15px;
    border-radius: 50px;
    border: none;
    background-color: var(--primary-color);
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
}

#emailotpBtn,
#phOtpBtn {
    opacity: 0.5;
    pointer-events: none;
}

.register_form button i {
    margin-right: 5px;
}

.input_msg_timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otp_timer {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 3px;
}

.otp_timer .timer {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.otp_timer .resend_btn {
    color: var(--primary-color);
    font-weight: 600;
    background-color: transparent;
    border: none;
    font-size: 14px;
}

.input_grp .eyeIcon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    font-size: 15px;
    color: var(--paragraph-color);
}

.terms_condition {
    display: flex;
    justify-content: start;
}

.terms_condition input {
    width: 15px;
    height: 15px;
}

.terms_condition label {
    margin-left: 10px;
    font-size: 14px;
    color: var(--paragraph-color);
}

.terms_condition a {
    color: var(--primary-color) !important;
}

.register_step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.register_step span {
    width: 35px;
    height: 35px;
    background-color: var(--primary-opacity);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0.5;
}

.register_step .line {
    width: 30px;
    height: 1px;
    background-color: var(--paragraph-color);
    margin-left: 10px;
    margin-right: 10px;
}

.notyf div {
    border-radius: 10px !important;
}

.iti__dropdown-content {
    background-color: var(--body-bg-color) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
}

.iti__country-list {
    border-top: 1px solid var(--border-color) !important;
    padding-left: 8px !important;
}

.iti__dropdown-content input {
    border: none !important;
}