@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sahitya:wght@400;700&family=Saira:ital,wght@0,100..900;1,100..900&family=Unbounded:wght@200..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

/* Container helpers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Scroll bo‘lganda ajralib turishi */
header.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #f3f5ff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5px;
}

.logo {
    max-width: 185px;
    width: 100%;
    height: auto;
}

.header__right {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.header__btn {
    max-width: 190px;
    width: 100%;
    height: 60px;
    border-radius: 40px;
    padding: 15px 40px;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    color: #0061fe;
    text-decoration: none;
}

.header__btn:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.header__menu {
    width: 60px;
    height: 60px;
    padding: 20px;
    background-color: #0061fe;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
}

/* ===== Responsive breakpoints ===== */
@media (max-width: 992px) {
    .header {
        display: flex;
        justify-content: space-between;
        padding: 30px 15px;
    }

    .header__btn {
        width: 150px;
        height: 50px;
        font-size: 16px;
    }

    .header__menu {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 150px;
    }

    .header__btn {
        width: 130px;
        height: 45px;
        font-size: 14px;
    }

    .header__right {
        column-gap: 10px;
    }

    .header__menu {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 25px 15px;
    }

    .logo {
        width: 110px;
        height: auto;
    }

    .header__right {
        display: flex;
        align-items: center;
        column-gap: 10px;
    }

    .header__btn {
        width: 120px;
        height: 40px;
        font-size: 13px;
        padding: 10px 27px;
    }

    .header__menu {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ===== Header ===== */

/* ===== Sidebar Modal ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1500;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Default */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%; /* katta ekranda 400px, kichik ekranda ekran kengligidan chiqmasin */
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 20px 0 0 20px;
    transition: right 0.4s ease;
    z-index: 2000;
}

/* iPhone SE (320px) va undan kichik ekranlar uchun */
@media (max-width: 480px) {
    .sidebar {
        width: 80%; /* butun ekran */
    }

    .sidebar__content {
        padding: 20px; /* kichik ekranda padding kamaytiriladi */
    }
}

.sidebar.active {
    right: 0;
}

.sidebar__content {
    padding: 30px 20px 60px 60px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

/* Close button */
.close-btn {
    align-self: flex-end;
    width: 35px;
    height: 35px;
    background: #0061fe;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* Nav links */
.sidebar__nav {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.sidebar__nav a {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

/* Active link */
.sidebar__nav a.active {
    color: #0061fe;
}

.sidebar__nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40%;
    height: 2px;
    background: #0061fe;
}

.nav__links {
    font-weight: bold;
    font-size: 42px;
    color: black;
}

.custom-select {
    max-width: 210px;
    width: 100%;
    background-color: #0061fe;
    color: white;
    border-radius: 12px;
    padding: 12px 24px;
    position: relative;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
}

.custom-select .select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0061fe;
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 100;
}

.custom-select .select-options li {
    padding: 12px 24px;
    cursor: pointer;
    transition: 0.2s;
}

.custom-select .select-options li:hover {
    background-color: white;
    color: #0061fe;
    border-radius: 12px;
}

.custom-select.open .select-options {
    display: block;
}

.selected::after {
    content: "▼";
    float: right;
    margin-left: 10px;
}

/* ===== Sidebar Modal ===== */

/* Hero Section */
.hero-section {
    padding: 200px 0 135px;
}

.hero-box {
    display: flex;
    gap: 48px;
    align-items: start;
    /*padding-top: 40px;*/
}

.hero-text {
    flex: 1;
    max-width: 50%;
}

.hero-text h1 {
    font-family: "Nunito Sans", sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 60px;
}

.hero-media {
    flex: 1;
    max-width: 50%;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    padding-top: 100px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .hero-section {
        padding: 150px 0 80px 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-box {
        flex-direction: column;
        gap: 32px;
    }

    .hero-text {
        max-width: 100%;
        text-align: left; /* matn chapga */
    }

    .hero-text h1 {
        font-size: 36px;
        line-height: 46px;
    }

    .hero-media {
        max-width: 100%;
        display: flex;
        justify-content: center; /* rasm markazda */
    }

    .hero-img {
        padding-top: 0;
    }
}

@media (max-width: 375px) {
    .hero-text h1 {
        font-size: 28px;
        line-height: 38px;
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: #f8f9ff;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 862px;
    width: 100%;
    margin: 0 auto;
    gap: 26px;
}

.intro-title {
    font-weight: 700;
    font-size: 50px;
    color: #000000;
    text-align: center;
}

.intro-subtitle {
    font-weight: bold;
    font-size: 38px;
    color: #000000;
}

.intro-quote {
    font-weight: 400;
    font-size: 34px;
    color: #000000;
}

.intro-label {
    font-weight: bold;
    font-size: clamp(20px, 5vw, 38px);
    color: #000000;
}

.intro-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 34px 0;
    padding: 0 40px;
}

.intro-link {
    font-weight: 400;
    font-size: 34px;
    color: #000000;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.intro-dot {
    color: #0061fe;
    font-size: 18px;
}

/* Image */
.intro-image {
    width: 100%;
    height: auto;
}

/* Info Section */
.info-section {
    background: #f8f9ff;
}

.info-block {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 48px;
}

.col {
    border-radius: 10px;
    background-color: white;
    padding: 25px;
    margin: 50px auto;
}

.info-text {
    flex: 1;
    max-width: 850px;
}

.info-text h2 {
    font-size: 50px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    text-align: center;
    margin-top: 50px;
}

.info-benefits-title {
    margin: 30px;
}

.info-text ul {
    list-style: none;
}

.info-text ul li {
    font-size: 34px;
    color: #19191a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-text ul li i {
    color: #0061fe;
    font-size: 18px;
}

.info-image {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    background-color: none;
    display: block;
    margin: 50px auto;
}

/* Benefits */
.info-benefits {
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.benefit-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    padding: 16px 10px;
    text-align: left;
    display: flex;
    align-items: center;

    .icon {
        margin-right: 10px;
        width: 20px;
        height: 20px;
    }
}

.flex_con {
    max-width: 950px;
    margin: 0 auto;
    padding: 0;
}

.flex_box {
    /* background: #0a45b4; */
    margin-top: 50px;
    margin-bottom: 50px;
}

.cardd {
    background: rgb(182, 5, 5);
    padding: 20px;
    width: 250px;
    height: 300px;
}

.flex_card {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;
}

.line {
    height: 5px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.line span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #103eab;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container,
    .hero-container,
    .intro-container,
    .info-container {
        padding: 0 16px;
    }

    .hero-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-text,
    .hero-media {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .intro-title {
        font-size: 1.75rem;
    }

    .intro-subtitle,
    .intro-quote,
    .intro-list li {
        font-size: 1rem;
    }

    .info-block {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        /* background-color: #0c79c1; */
    }

    .info-text,
    .info-image {
        max-width: 100%;
    }

    .info-text h2 {
        font-size: 1.5rem;
    }

    .info-text ul li {
        font-size: 1rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-logo {
        font-size: 1.25rem;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero-section {
        padding: 64px 0 32px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .intro-title,
    .info-text h2 {
        font-size: 1.25rem;
    }

    .info-text ul li {
        font-size: 0.9rem;
    }
}

/* ===== Types Section ===== */
.types-section {
    padding: 80px 0 0 0;
    background-color: #f3f5ff;
    position: relative;
}

.types-title {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.types-subtitle {
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 82px;
    color: #000;
}

.types-cards {
    display: flex;
    justify-content: center;
    column-gap: 17px;
    row-gap: 40px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    color: #000;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    flex: 1;
    min-width: 280px;
    height: 710px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.card2 {
    background-color: #0061fe;
    color: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 32px 24px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    transform: translateY(-40px);
    z-index: 10;
}

.card__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.card-img {
    max-width: 75px;
    height: 93px;
}

.price2 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card2 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card p {
    font-weight: normal;
    font-size: 14px;
    color: inherit;
}

.card2 p {
    font-weight: normal;
    font-size: 14px;
    color: inherit;
}

.price {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #006aff;
}

.btn2 {
    position: relative;
    overflow: hidden;
    background-color: white;
    color: #0061fe;
    border: none;
    padding: 20px 30px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn2::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(0, 97, 254, 0.3),
            transparent
    );
    transition: left 0.5s ease;
}

.btn2:hover::before {
    left: 100%;
}

.btn2:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 97, 254, 0.25);
}

.btn {
    position: relative;
    overflow: hidden;
    background-color: #0061fe;
    color: #fff;
    border: none;
    padding: 20px 30px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    /* margin-bottom: 16px; */
}

.btn1 {
    margin-top: 100px;
}

/* Yaltirash effekt pseudo-element */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent
    );
    transition: left 0.5s ease;
}

/* Hover effekt */
.btn:hover::before {
    left: 100%;
}

/* Hover tugma ko‘tarilishi va soyasi */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 97, 254, 0.3);
}

.card2__subtitle {
    width: 100%;
    padding: 12px 5px;
    background-color: white;
    color: #006aff !important;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px !important;
    margin-top: 40px;
    text-align: center;
}

.features {
    list-style: none;
    padding-left: 0;
}

.features2 {
    list-style: none;
    padding-left: 0;
}

.features li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: inherit;
}

.features2 li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: inherit;
}

.features li::before {
    content: "✔";
    color: #0061fe;
    font-weight: bold;
    flex-shrink: 0;
}

.features2 li::before {
    content: "✔";
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.slider-container {
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 100px 0 0 0;
}

.slider__wrapper {
    display: flex;
    transition: transform 0.3s ease;
    align-items: stretch;
}

.slider-card {
    flex: 0 0 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.slider-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 100;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0061fe;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.card-basic {
    margin: 0 !important;
}

.bottom__title {
    text-align: center;
    font-size: clamp(16px, 4vw, 30px);
    font-weight: 500;
    color: #000;
    margin-top: 85px;
}

.bottom-card-title {
    text-align: center;
    font-size: clamp(16px, 4vw, 30px);
    font-weight: 500;
    color: #000;
    margin-top: 85px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .types-cards {
        column-gap: 17px;
        row-gap: 40px;
    }

    .card2 {
        margin-top: 40px;
    }

    .types-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .types-cards {
        display: none;
    }

    .bottom__title {
        display: none;
    }

    .slider-container {
        display: block;
    }

    .types-title {
        font-size: 28px;
    }

    .types-subtitle {
        font-size: 24px;
    }

    .price {
        font-size: 24px;
    }

    .card h4 {
        font-size: 20px;
    }

    .features li {
        font-size: 13px;
    }

    .btn {
        padding: 10px 14px;
        font-size: 14px;
    }

    .card2 {
        transition: none;
        transform: none;
        z-index: auto;
    }
}

@media (max-width: 375px) {
    .types-title {
        font-size: 24px;
    }

    .types-subtitle {
        font-size: 16px;
    }

    .price {
        font-size: 20px;
    }

    .card h4 {
        font-size: 18px;
    }

    .features li {
        font-size: 12px;
    }

    .btn1 {
        margin-top: 30px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ===== Types ===== */

/* ===== Slider ===== */
.slider {
    background-color: #f3f5ff;
    padding: 60px 0;
}

.slider-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.slider-header h3 {
    font-weight: 700;
    font-size: 50px;
    color: black;
    margin-bottom: 24px;
}

.slider-header p {
    font-weight: 500;
    font-size: 40px;
    color: black;
    margin: 0 auto;
    text-align: left;
}

/* Progress line styles */
.progress-line {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 40px 0 60px;
}

.progress-line::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 5px;
    background-color: #d0d0d0;
    z-index: 1;
}

.progress-line::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 20px;
    width: var(--progress-width, 0%);
    height: 5px;
    background-color: #0061fe;
    z-index: 2;
    transition: width 0.5s ease;
}

.progress-step {
    text-align: center;
    position: relative;
    z-index: 3;
    cursor: pointer;
    flex: 1;
}

.progress-step .step-marker {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #d0d0d0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: white;
    transition: all 0.3s ease;
    font-size: 14px;
}

.progress-step.active .step-marker,
.progress-step.passed .step-marker {
    background-color: #0061fe;
    color: #fff;
}

.progress-step h4 {
    font-size: 20px;
    color: black;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.progress-step.active h4 {
    color: #0061fe;
    font-weight: bold;
}

.progress-step p {
    font-weight: 500;
    font-size: 14px;
    color: black;
    transition: all 0.3s ease;
}

.progress-step.active p {
    color: #0061fe;
}

/* Cards container */
.cards-container {
    position: relative;
    overflow: hidden;
    height: 380px;
    width: 100%;
}

.cards-wrapper {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    height: 100%;
    flex-wrap: nowrap;
    gap: 40px;
}

.card__item {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    min-height: 320px;
    box-sizing: border-box;
}

.card__item.active {
    transform: translateY(-10px);
}

.card__item p {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.card__item h3 {
    color: #333;
    font-size: 18px;
    margin: 15px 0 10px 0;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(216, 228, 232);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #4e73df;
    margin: 0 10px;
}

.nav-btn:hover {
    background-color: #0061fe;
    color: #fff;
}

/* Responsive design */
@media (max-width: 992px) {
    .card__item {
        flex: 0 0 calc(50% - 20px);
    }

    .slider-header h3 {
        font-size: 36px;
    }

    .slider-header p {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .cards-wrapper {
        justify-content: flex-start;
    }

    .card__item {
        flex: 0 0 calc(50% - 10px); /* tablet 2-card */
        max-width: 100%;
        margin: 0 5px;
        padding: 20px;
    }

    .slider-header h3 {
        font-size: 28px;
    }

    .slider-header p {
        font-size: 20px;
    }

    .progress-line {
        padding: 0 10px;
    }

    .progress-line::before,
    .progress-line::after {
        left: 10px;
        right: 10px;
    }

    .progress-step h4 {
        font-size: 16px;
    }

    .progress-step p {
        font-size: 12px;
    }

    .progress-step .step-marker {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .card__item p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cards-wrapper {
        justify-content: flex-start; /* chapdan chiqadi */
    }

    .card__item {
        flex: 0 0 100%; /* faqat 1 ta card ekranda */
        max-width: 100%;
        margin: 0; /* margin olib tashlash */
    }

    .slider-header p {
        font-size: 18px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .progress-step h4 {
        font-size: 14px;
    }

    .progress-step .step-marker {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

/* ===== Slider ===== */

/* ===== Progres ===== */
.progres {
    padding: 60px 0;
    border-bottom: 1px solid rgb(181, 181, 181);
}

.progres__header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.progres__title {
    font-weight: 700;
    font-size: 50px;
    color: #000000;
}

.progres__desc {
    font-weight: 400;
    font-size: 30px;
    color: #000000;
    text-align: left;
}

.progres__center {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 80px;
}

.center__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 75px; /* mobil uchun kichiklashtirildi */
    position: relative;
    min-height: 330px;
}

.center__left::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #0a66c2;
    transform: translateX(-50%);
    z-index: 0;
}

.center__left div {
    position: relative;
    z-index: 1;
    background: #0a66c2;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.center__right {
    display: flex;
    flex-direction: column;
    gap: 32px; /* mobil uchun kichiklashtirildi */
}

.right__title {
    font-weight: 500;
    font-size: 30px;
    color: black;
}

.right__desc {
    font-weight: 400;
    font-size: 24px;
    color: black;
}

.progres__bottom {
    margin-top: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.bottom__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bottom__title {
    font-weight: bold;
    font-size: 38px;
    color: black;
}

.bottom__desc {
    font-weight: 400;
    font-size: 24px;
    color: black;
}

.bottom__desc i {
    color: #0061fe;
}

.progres__img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .progres__title {
        font-size: 36px;
    }

    .progres__desc {
        font-size: 24px;
    }

    .progres__center {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .center__left {
        min-height: auto;
        gap: 40px;
    }

    .center__right {
        gap: 20px;
    }

    .right__title,
    .right__desc {
        font-size: 24px;
    }

    .progres__bottom {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: left;
    }

    .bottom__title {
        font-size: 28px;
    }

    .bottom__desc {
        font-size: 18px;
        text-align: left;
    }

    .progres__img {
        display: none;
    }
}

@media (max-width: 700px) {
    .center__left {
        display: none;
    }

    .progres__title {
        font-size: 25px;
    }

    .progres__desc {
        font-size: 20px;
    }

    .bottom__title {
        font-size: 25px;
    }
}

@media (max-width: 375px) {
    .progres__title {
        font-size: 28px;
    }

    .progres__desc {
        font-size: 20px;
    }

    .right__title,
    .right__desc {
        font-size: 20px;
    }

    .bottom__title {
        font-size: 24px;
    }

    .bottom__desc {
        font-size: 16px;
    }

    .center__left div {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}
