* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ====== Header ====== */
.header {
    background-color: #173ec8;
    text-align: center;
    padding: 25px 0;
    position: fixed;
    z-index: 1000;
    width: 100%;
}

.header__img {
    max-width: 165px;
    width: 100%;
    height: auto;
}

/* ====== Header ====== */

/* ====== Hero ====== */
.hero {
    padding: 150px 0 65px 0;
}

.hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
}

.hero__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
}

.hero__desc {
    font-weight: 500;
    font-size: clamp(14px, 5vw, 24px);
    color: #001664;
}

.hero__img {
    max-width: 740px;
    width: 100%;
    height: auto;
}

.hero__btn {
    max-width: 585px;
    width: 100%;
    height: 84px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #a4b8ff 0%, #173ec8 100%);
    border: none;
    color: white;
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
}

.hero__btn:focus {
    border: none;
    outline: none;
}

/* ====== Hero ====== */

/* ====== Telegram ====== */
.telegram {
    padding: 160px 0;
    /*background-image: url(./images/robot1.JPG);*/
    background-repeat: no-repeat;
    background-position: right 500px;
    background-size: 460px 460px;
}

.telegram__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 25px;
}

.top__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
}

.top__desc {
    font-weight: 500;
    font-size: clamp(14px, 5vw, 24px);
    color: #001664;
}

.left__card {
    max-width: 430px;
    height: 168px;
    width: 100%;
    box-shadow: 4px 4px 24px 0px #ffffff33 inset;
    box-shadow: -8px -8px 24px 0px #00000040 inset;
    border: 1px solid;
    border-image-source: linear-gradient(
            124.27deg,
            rgba(255, 255, 255, 0.9) 3.26%,
            rgba(255, 255, 255, 0.25) 95.19%
    );
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 100%
    );
    padding: 22px;
    border-radius: 16px;
}

.left__card i {
    font-size: 25px;
    color: black;
}

.telegram__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 100px;
}

.bottom__left {
    display: grid;
    grid-template-columns: auto auto;
    gap: 24px;
}

.left__desc {
    font-weight: 400;
    font-size: 16px;
    color: black;
    margin-top: 16px;
}

.bottom__img {
    width: 200px;
    height: auto;
}

@media (max-width: 778px) {
    .telegram {
        background-image: none !important;
    }

    .telegram__bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .bottom__left {
        display: grid;
        grid-template-columns: auto;
        justify-content: center;
        align-items: center;
    }
}

/* ====== Telegram ====== */

/* ====== Chat ====== */
.chat {
    padding: 60px 0;
}

.chat__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
    text-align: center;
}

.chat__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 100px;
}

.chat__img {
    width: 600px;
    height: auto;
}

.chat__cards {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.chat-card-center {
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid;

    border-image-source: linear-gradient(
            124.27deg,
            rgba(255, 255, 255, 0.9) 3.26%,
            rgba(255, 255, 255, 0.25) 95.19%
    );
    box-shadow: 4px 4px 24px 0px #ffffff33 inset;
    box-shadow: -8px -8px 24px 0px #00000040 inset;
    max-width: 510px;
    width: 400%;
    height: auto;
    padding: 24px;
    border-radius: 16px;
    margin-left: 70px;
}

.chat-card {
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid;

    border-image-source: linear-gradient(
            124.27deg,
            rgba(255, 255, 255, 0.9) 3.26%,
            rgba(255, 255, 255, 0.25) 95.19%
    );
    box-shadow: 4px 4px 24px 0px #ffffff33 inset;
    box-shadow: -8px -8px 24px 0px #00000040 inset;
    max-width: 510px;
    width: 400%;
    height: auto;
    padding: 24px;
    border-radius: 16px;
}

@media (max-width: 992px) {
    .chat__wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .chat-card-center {
        margin-left: 0; /* o‘rtadagi card ham markazda */
    }
}

@media (max-width: 480px) {
    .chat {
        padding: 40px 10px;
    }

    .chat__title {
        font-size: 24px;
    }

    .chat__cards {
        gap: 24px;
    }

    .chat-card,
    .chat-card-center {
        padding: 16px;
        max-width: 100%;
    }

    .chat__img {
        width: 100%;
    }
}

/* ====== Chat ====== */

/* ====== Sales ====== */
.sale {
    padding: 60px 0;
}

.sale__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
    text-align: center;
}

.sale__wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
    margin-top: 110px;
}

.sale-card {
    flex: 0 1 calc(33.333% - 32px);
    max-width: 350px;
    width: 100%;
    height: auto;
}

.sale-card h3 {
    font-weight: 800;
    font-size: 40px;
    color: #252525;
}

.sale-card h4 {
    font-weight: 400;
    font-size: 24px;
    color: #252525;
    margin-top: 12px;
}

.sale__img {
    max-width: 350px;
    width: 100%;
    height: auto;
    margin-top: 24px;
}

@media (max-width: 768px) {
    .sale__wrapper {
        flex-direction: column;
    }
}

/* ====== Sales ====== */

/* ====== Way ====== */
.way {
    padding: 60px 0;
}

.way__card {
    background-repeat: no-repeat, no-repeat;
    background-position: right center, 0 620px;
    background-size: 1200px 1100px, 300px 450px;
    position: relative;
}

.way__container {
    max-width: 1490px;
    width: 100%;
    height: 1239px;
    margin: 0 auto;
}

.card1 {
    position: absolute;
    border: 5px solid #4f7ea6;
    width: 104px;
    height: 32px;
    top: 130px;
    right: 0px;
    opacity: 1;
    gap: 8px;
    border-width: 5px;
    border-top-left-radius: 7px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding: 4px;
}

.card1 p {
    font-weight: 500;
    font-size: 4px;
    color: black;
    text-align: center;
}

.card2 {
    position: absolute;
    width: 260px;
    height: 90px;
    top: 130px;
    right: 160px;
    opacity: 1;
    padding-top: 6px;
    padding-right: 6px;
    padding-bottom: 6px;
    padding-left: 6px;
    gap: 8px;
    border-width: 10px;
    border-top-left-radius: 20px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 20px;
    border: 10px solid #9371b2;
}

.card2 p {
    font-weight: 500;
    font-size: 11px;
    color: black;
    text-align: center;
}

.card3 {
    position: absolute;
    width: 380px;
    height: 120px;
    top: 280px;
    right: 600px;
    opacity: 1;
    padding-top: 12px;
    padding-right: 8px;
    padding-bottom: 12px;
    padding-left: 8px;
    gap: 8px;
    border-width: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border: 10px solid #c14f44;
}

.card3 p {
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-align: center;
}

.card4 {
    width: 380px;
    height: 144px;
    top: 400px;
    right: 1050px;
    opacity: 1;
    padding-top: 12px;
    padding-right: 8px;
    padding-bottom: 12px;
    padding-left: 8px;
    gap: 8px;
    border-width: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border: 10px solid #6cb4a9;
    position: absolute;
}

.card4 p {
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-align: center;
}

.card5 {
    position: absolute;
    border: 10px solid #dfa633;
    width: 380px;
    height: 130px;
    bottom: 400px;
    right: 200px;
    opacity: 1;
    padding-top: 12px;
    padding-right: 8px;
    padding-bottom: 12px;
    padding-left: 8px;
    gap: 8px;
    border-width: 10px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.card5 p {
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-align: center;
}

.way__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
    text-align: center;
}

.way__desc {
    font-weight: 600;
    font-size: clamp(16px, 5vw, 32px);
    color: #001664;
    text-align: center;
}

@media (max-width: 1000px) {
    .way__card {
        /*background-image: url(./images/way.png), url(./images/robot4.png);*/
        background-repeat: no-repeat, no-repeat;
        background-position: right bottom, 0 bottom;
        background-size: 315px 450px, 110px 150px;
        position: relative;
        padding: 0 10px;
    }

    .way__desc {
        margin-bottom: 50px;
    }

    .card1 {
        position: static;
        width: 100%;
        min-height: 144px;
        border-radius: 20px 20px 0 20px;
        margin-bottom: 20px;
        border: 10px solid #4f7ea6;
    }

    .card1 p {
        font-size: 16px;
    }

    .card2 {
        position: static;
        width: 100%;
        min-height: 144px;
        border-radius: 20px 20px 0 20px;
        margin-bottom: 20px;
    }

    .card2 p {
        font-size: 16px;
    }

    .card3 {
        position: static;
        width: 100%;
        min-height: 144px;
        margin-bottom: 20px;
    }

    .card4 {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .card5 {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        min-height: 144px;
    }
}

/* ====== Way ====== */

/* ====== Service ====== */
.service {
    padding: 24px 0;
}

.service__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
    text-align: center;
}

.service__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap; /* ➕ cardlar joylashadi */
    margin-top: 100px;
    column-gap: 20px;
    row-gap: 40px;
}

.service-card2,
.service-card {
    background: #f4f6ff;
    border-radius: 16px;
    padding: 32px;
    width: 380px;
    min-height: 600px; /* 1000px juda katta edi, kichraytirdim */
    height: auto;
}

/* Card 2 faqatgina border bilan ajraladi */
.service-card2 {
    border: 2px solid #173ec8;
}

.service-card-title {
    font-weight: 500;
    font-size: clamp(16px, 5vw, 32px);
    color: black;
}

.service-card__title {
    font-weight: 500;
    font-size: clamp(27px, 5vw, 54px);
    color: black;
    margin: 24px 0;
}

.service-card_title {
    font-weight: 500;
    font-size: clamp(14px, 5vw, 24px);
    color: black;
    margin-bottom: 18px;
}

.service-card-desc {
    font-weight: 400;
    font-size: 18px;
    color: black;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card-desc i {
    color: #173ec8;
}

.service__text {
    font-weight: 500;
    font-size: 16px;
    color: black;
}

.service__btn {
    width: 100%;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #a4b8ff 0%, #173ec8 100%);
    border: none;
    color: white;
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    margin-top: 10px;
}

.scd_1 {
    padding-bottom: 90px;
}

.scd_2 {
    padding-bottom: 145px;
}

/* 📱 Tablet va kichik ekran */
@media (max-width: 992px) {
    .service__wrapper {
        justify-content: center;
    }
}

/* 📱 Mobile */
@media (max-width: 778px) {
    .service__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .service-card2 {
        width: 100%; /* ekranga sig‘sin */
        max-width: 500px;
        min-height: auto;
    }
}

/* 📱 iPhone SE (320px) */
@media (max-width: 480px) {
    .service {
        padding: 16px 0;
    }

    .service__title {
        font-size: 24px;
    }

    .service-card,
    .service-card2 {
        padding: 20px;
    }

    .service__btn {
        height: 56px;
        font-size: 18px;
    }

    .scd_1 {
        padding-bottom: 0;
    }

    .scd_2 {
        padding-bottom: 0;
    }
}

/* ====== Service ====== */

/* ====== Economic ====== */
.economic {
    padding: 100px 0 150px 0;
}

.economic__title {
    font-weight: 600;
    font-size: clamp(28px, 5vw, 56px);
    color: #173ec8;
    text-align: center;
}

.economic__wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 100px;
}

.economic__card {
    max-width: 750px;
    width: 100%;
    height: auto;
    padding: 24px;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 100%
    );
    border: 1px solid;
    border-image-source: linear-gradient(
            124.27deg,
            rgba(255, 255, 255, 0.9) 3.26%,
            rgba(255, 255, 255, 0.25) 95.19%
    );
    box-shadow: 4px 4px 24px 0px #ffffff33 inset;
    box-shadow: -8px -8px 24px 0px #00000040 inset;
    border-radius: 16px;
}

.economic__card-title {
    font-weight: 600;
    font-size: clamp(14px, 5vw, 24px);
    color: #001664;
}

.economic__card__title {
    font-weight: 500;
    font-size: clamp(14px, 5vw, 24px);
    color: #001664;
    margin-top: 40px;
}

.economic__card-desc {
    font-weight: 400;
    font-size: 18px;
    color: black;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.economic__card-desc i {
    color: #173ec8;
}

.economic__btn {
    max-width: 350px;
    width: 100%;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #a4b8ff 0%, #173ec8 100%);
    border: none;
    color: white;
    font-weight: 500;
    font-size: 24px;
    text-decoration: none;
    margin-top: 40px;
}

.economic__img {
    max-width: 510px;
    height: auto;
}

@media (max-width: 778px) {
    .economic__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .economic__img {
        max-width: 300px;
    }
}

@media (max-width: 400px) {
    .economic__img {
        max-width: 250px;
    }
}

/* ====== Economic ====== */

/* ===== Footer ===== */
.footer {
    background: white;
    padding-top: 60px 0;
    color: #333;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 230px;
}

.footer-col img.footer-logo {
    max-width: 160px;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    max-width: 250px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    color: #006aff;
    margin-right: 10px;
    font-size: 14px;
    min-width: 16px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #374151;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #006aff;
}

.socials {
    gap: 15px;
    margin: 0;
    padding: 0;
}

.socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: rgb(212, 221, 223);
    border-radius: 8px;
    font-size: 16px;
    color: #006aff;
    transition: 0.3s;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.socials a:hover {
    background: #006aff;
    color: #fff;
}

.footer-bottom {
    margin-top: 35px;
    padding: 15px 0;
    background-color: #f5fbff;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-col p {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    .footer-col p {
        max-width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .socials {
        justify-content: center;
    }
}

/* Demo uchun */
.demo-title {
    text-align: center;
    color: #006aff;
    font-size: 24px;
}

/* ===== Footer ===== */

/* Website form */

.website_form div input {
    /*width: 300px;*/
    padding: 8px 20px;
    border: 1px solid #D8E0F0;
    border-radius: 8px;
}

.modal_button {
    padding: 16px 50px;
    text-decoration: none;
    background: linear-gradient(to right, #173ec8 0%, #173ec8 50%, #a4b8ff 50%, #a4b8ff 100%);
    background-size: 200% 100%;
    background-position: right bottom;
    color: #403CCF; /* default text color */
    transition: all 0.4s ease;
    border: none;
    border-radius: 10px;
    font-family: "Poppins", sans-serif;
}

.modal_button:hover {
    background-position: left bottom; /* shifts the gradient */
    color: white;
}


/* Website form */
