@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    scrollbar-width: thin;
    /* overflow-x: hidden; */
    scrollbar-color: #95989b transparent;
}

/* ===== Universal Scroll Style ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #95989b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #7f8285;
}

body {
    font-family: sans-serif;
    font-weight: 500;
    background-color: #f8f9ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== 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);
}

.select_name {
    width: 50px;
    height: 30px;
    font-size: 22px;
    font-weight: 600;
    border: none;
    outline: none;
    background-color: #f5f5f5; /* Light background for better visibility */
    border-radius: 5px; /* Rounded corners for a modern look */
    padding: 0 10px; /* Slight padding for better text alignment */
    appearance: none; /* Remove default browser styling */
    -webkit-appearance: none; /* For Safari/Chrome */
    -moz-appearance: none; /* For Firefox */
    cursor: pointer; /* Pointer cursor for better UX */
    color: #333; /* Text color for readability */
}

/* Optional: Style for the dropdown arrow */
.select_name {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5L3.5 6h9L8 10.5z'/%3E%3C/svg%3E"); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 5px center; /* Position the arrow */
}

.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;
}

.language-dropdown {
    position: relative;
    display: inline-block;
    width: 220px;
    font-family: 'Inter', sans-serif;
}

/* Button */
.language-dropdown .dropdown-btn {
    width: 100%;
    padding: 12px 16px;
    background: #0061fe;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-dropdown .dropdown-btn .arrow {
    font-size: 12px;
    margin-left: 8px;
}

/* Dropdown list */
.language-dropdown .dropdown-list {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #0061fe;
    color: #fff;
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.language-dropdown .dropdown-list li {
    padding: 10px 16px;
    margin: 0px 10px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 8px;
    transition: background 0.2s;
}

.language-dropdown .dropdown-list li:hover {
    background: white;
    color: #0061fe;
}

/* ===== Sidebar Modal ===== */

/* ===== Hero ===== */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
    align-items: center;
    padding: 200px 10px 40px 10px;
}

.hero__title {
    font-weight: bold;
    font-size: 60px;
    color: black;
    text-align: center;
}

.hero__desc {
    font-weight: bold;
    font-size: 28px;
    color: #0061fe;
    text-align: center;
    text-decoration: underline;
}

.hero__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    max-width: 360px;
    width: 100%;
    height: 60px;
    border-radius: 24px;
    border: none;
    background-color: #0061fe;
    color: white;
    font-weight: bold;
    font-size: 24px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.9s ease, background-color 0.3s ease;
    text-decoration: none;
}

.hero__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.35);
    transform: skewX(-20deg);
    transition: all 0.4s ease;
}

.hero__btn:hover::before {
    left: 120%; /* gradient tezroq harakat qiladi */
    color: white;
}

.hero__btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero {
        padding: 300px 15px 40px 15px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__desc {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 200px 15px 40px 15px;
        row-gap: 30px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__desc {
        font-size: 20px;
    }

    .hero__btn {
        height: 50px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 10px 30px 10px;
        row-gap: 20px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__desc {
        font-size: 18px;
    }

    .hero__btn {
        width: 200px;
        height: 45px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 120px 8px 24px 8px; /* kichikroq padding */
        row-gap: 16px;
    }

    .hero__title {
        font-size: 20px; /* juda katta chiqmasin */
    }

    .hero__desc {
        font-size: 16px;
    }
}

/* ===== Hero ===== */

/* ===== Video ===== */
.video {
    /*padding: 60px 0;*/
    text-align: center;
}

.video__img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== Video ===== */

/* ===== About ===== */
.about {
    padding: 0 5px;
}

.about__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
}

.about__top__title {
    font-weight: 700;
    font-size: 48px;
    color: #1f2937;
}

.top__span {
    color: #0061fe;
}

.about__top__desc {
    font-weight: 400;
    font-size: 28px;
    color: #2d2d2d;
}

.about__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.about__card {
    flex: 1 1 300px;
    max-width: 370px;
    min-height: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;
}

.about__card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.card__img1,
.card__img2,
.card__img3 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__img1 {
    background-color: #f4d3b3;
}

.card__img2 {
    background-color: #c8fad3;
}

.card__img3 {
    background-color: #e7b9b9;
}

.about__img {
    width: 40px;
    height: 40px;
}

.about__title {
    font-weight: 600;
    font-size: 26px;
    color: #2d2d2d;
}

.about__desc {
    font-weight: 300;
    font-size: 20px;
    color: #2d2d2d;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
    .about__top__title {
        font-size: 38px;
    }

    .about__top__desc {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 10px;
    }

    .about__top__title {
        font-size: 32px;
    }

    .about__top__desc {
        font-size: 20px;
    }

    .about__card {
        min-height: 280px;
    }

    .about__title {
        font-size: 22px;
    }

    .about__desc {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 10px;
    }

    .about__top__title {
        font-size: 26px;
    }

    .about__top__desc {
        font-size: 18px;
    }

    .about__card {
        min-height: auto;
        padding: 20px;
    }

    .about__title {
        font-size: 20px;
    }

    .about__desc {
        font-size: 16px;
    }
}

/* ===== About ===== */

/* ===== Question ===== */
.question {
    padding: 60px 5px;
}

.question__title {
    font-weight: 600;
    font-size: 48px;
    color: #1f2937;
    padding-bottom: 80px;
    text-align: center;
}

.question__span {
    color: #0061fe;
}

.question__wrapper div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 40px;
}

.question__wrapper .question__left {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-top: 30px;
}

.question__wrapper .left__title {
    font-weight: bold;
    font-size: 40px;
    color: #1f2937;
}

.question__wrapper .left__desc {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
    color: #2d2d2d;
}

.question__wrapper .question__right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
}

.question__wrapper .right__text {
    display: flex;
    gap: 15px;
    font-size: 22px;
    color: #2d2d2d;
}

.question__wrapper .right__card {
    margin-top: 6px;
    width: 55px;
    height: 55px;
    padding: 20px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question__wrapper .right__card i {
    font-size: 24px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
    .question__title {
        font-size: 38px;
        padding-bottom: 60px;
    }

    .question__wrapper .left__title {
        font-size: 32px;
    }

    .question__wrapper .right__text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .question {
        padding: 40px 10px;
    }

    .question__wrapper div {
        grid-template-columns: 1fr; /* bitta ustun */
        gap: 30px;
    }

    .question__title {
        font-size: 32px;
        padding-bottom: 40px;
    }

    .question__wrapper .question__left {
        text-align: start;
    }

    .question__wrapper .question__right {
        display: none;
    }

    .question__wrapper .left__title {
        font-size: 28px;
        text-align: center;
    }

    .question__wrapper .left__desc {
        justify-content: center;
    }

    .question__wrapper .right__text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .question__title {
        font-size: 26px;
        padding-bottom: 30px;
    }

    .question__wrapper .left__title {
        font-size: 22px;
    }

    .question__wrapper .left__desc {
        font-size: 14px;
        flex-wrap: wrap;
        text-align: center;
    }

    .question__wrapper .right__text {
        font-size: 16px;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .question__wrapper .right__card {
        width: 50px;
        height: 50px;
    }

}

/* ===== Question ===== */

/* ===== Service ===== */
.service {
    padding: 30px 5px;
}

.service__title {
    font-weight: 600;
    font-size: 48px;
    color: #1f2937;
    text-align: center;
}

.service__span {
    color: #0061fe;
}

.service__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-top: 65px;
}

.service__img {
    max-width: 540px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.service__right {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

.service__job {
    max-width: 335px;
    width: 100%;
    min-height: 60px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: lightblue;
    color: #0061fe;
    border-radius: 50px;
    font-weight: 500;
    font-size: 20px;
    text-align: center;
}

.service__title-two {
    font-weight: bold;
    font-size: 35px;
    color: black;
}

.service__desc {
    font-weight: 400;
    font-size: 25px;
    color: #2d2d2d;
}

.service__btn {
    background-color: #0061fe;
    max-width: 365px;
    width: 100%;
    height: 60px;
    border-radius: 30px;
    border: none;
}

.service__btn a {
    display: flex;
    align-items: center;
    gap: 7px;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: white;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service__title {
        font-size: 40px;
    }

    .service__title-two {
        font-size: 28px;
    }

    .service__desc {
        font-size: 20px;
    }

    .service__job {
        font-size: 18px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .service__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .service__img {
        max-width: 100%;
    }

    .service__right {
        align-items: center;
    }

    .service__job {
        max-width: 100%;
        font-size: 16px;
    }

    .service__title-two {
        font-size: 24px;
    }

    .service__desc {
        font-size: 18px;
    }

    .service__btn {
        max-width: 280px;
        height: 50px;
    }

    .service__btn a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service__title {
        font-size: 28px;
    }

    .service__title-two {
        font-size: 20px;
    }

    .service__desc {
        font-size: 16px;
    }

    .service__job {
        font-size: 14px;
        padding: 8px 15px;
    }

    .service__btn {
        max-width: 220px;
        height: 45px;
    }

    .service__btn a {
        font-size: 13px;
    }
}

/* ===== Service ===== */

/* ===== Cards ===== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    padding: 60px 5px;
}

.card__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes button to bottom */
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 12px;
    text-align: center;
}

/* Title */
.card__title {
    font-weight: 600;
    font-size: 22px;
    color: #1f2937;
    margin: 15px 0;
    min-height: 60px; /* keeps headers aligned */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Description */
.card__desc {
    flex-grow: 1; /* take available space */
    font-weight: 400;
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 20px;
    min-height: 70px; /* ensures consistent card height */
}

/* Button */
.card__btn {
    max-width: 290px;
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 20px;
    background-color: #0061fe;
    margin: 0 auto;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card__btn:hover {
    color: #0061fe;
    background-color: white;
    border: 2px solid #0061fe;
    transition: all 0.3s ease;
}

/* Image */
.card__img {
    width: 100%;
    height: 200px; /* fixed height for uniformity */
    object-fit: cover;
    border-radius: 8px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .card__title {
        font-size: 22px;
    }

    .card__desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .card__item {
        padding: 20px;
    }

    .card__title {
        font-size: 20px;
    }

    .card__desc {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cards {
        gap: 20px;
        padding: 40px 10px;
    }

    .card__title {
        font-size: 18px;
    }

    .card__desc {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .cards {
        gap: 15px;
        padding: 30px 10px;
    }

    .card__item {
        padding: 15px 10px;
    }

    .card__title {
        font-size: 16px;
    }

    .card__desc {
        font-size: 13px;
    }
}

/* ===== Cards ===== */

/* ===== Progress ===== */
#progressTitle {
    min-height: 60px; /* taxminiy, kerakli qiymatni qo'ying */
    display: flex;
    align-items: center;
}

#progressDesc {
    min-height: 120px; /* matn uzunligiga qarab qo'shing */
    display: flex;
    align-items: center;
}

.progress__img {
    max-width: 520px;
    width: 100%;
    height: 350px; /* doimiy balandlik */
}

.progress__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

#progressTitle,
#progressDesc,
#progressLabel,
#progressImg {
    transition: opacity 0.3s ease;
}

:root {
    --primary: #0061fe;
    --text: #1f2937;
    --muted: #2d2d2d;
    --chip-bg: rgb(223, 230, 238);
    --radius: 50px;
}

.progres {
    padding: clamp(32px, 3vw, 40px) 10px;
}

.progress__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    row-gap: clamp(12px, 2.2vw, 20px);
}

.progress__top__title {
    font-weight: 700;
    font-size: clamp(22px, 4vw, 48px);
    color: var(--text);
    line-height: 1.2;
}

.progress__top__desc {
    font-weight: 400;
    font-size: clamp(14px, 2.5vw, 28px);
    color: var(--muted);
    margin: 0 auto;
}

.progress__wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(24px, 5vw, 60px);
    margin-top: clamp(24px, 5vw, 70px);
    background: var(--chip-bg);
    padding: clamp(20px, 4vw, 50px) clamp(16px, 4vw, 50px) clamp(36px, 8vw, 100px);
    border-radius: 0 var(--radius) 0 var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.progress__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 15px;
}

.progress__left-title {
    font-weight: 600;
    font-size: clamp(20px, 3.2vw, 40px);
    color: #000;
    line-height: 1.25;
}

.progress__left-desc {
    font-weight: 400;
    font-size: clamp(14px, 2vw, 22px);
    color: var(--muted);
}

.progress__btn {
    max-width: 335px;
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 30px;
    background: var(--primary);
    margin-top: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 97, 254, 0.3);
}

.progress__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 97, 254, 0.35);
    background: #0052d6;
}

.progress__btn a {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.progres__bottom,
.progress__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.progres__bottom__text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: clamp(12px, 1.8vw, 16px);
    line-height: 1;
    border: none;
    cursor: pointer;

    min-height: 48px; /* hammasi bir xil balandlikda */
    padding: 10px 14px; /* text bo‘lsa yon bo‘shliq */
    border-radius: 70px;
    transition: all 0.3s ease;
    flex-shrink: 0; /* siqilib ketmasin */
}

.progres__bottom__text:not(:has(span:not(:empty))) {
    width: 48px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    padding: 10px 30px;
    gap: 0;
}

.progres__bottom-cards,
.progress__bottom-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.progres__card,
.progress__card {
    width: 80px;
    height: 80px;
    background: var(--primary);
    display: flex;
    border: none;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(0, 97, 254, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.progres__card:hover,
.progress__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 97, 254, 0.3);
}

.progres__imag,
.progress__icon {
    width: 27px;
    height: 27px;
    display: block;
}

.img__back {
    background-color: white;
    padding: 7px;
    border-radius: 50%;
}

/* ===== BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .progress__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .progress__btn {
        max-width: 300px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .progress__wrapper {
        padding: 24px 18px 36px;
        gap: 24px;
    }

    .progress__btn {
        max-width: 260px;
        height: 52px;
    }

    .progres__bottom,
    .progress__bottom {
        justify-content: center;
        gap: 14px;
    }

    .progres__bottom-cards,
    .progress__bottom-cards {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .progress__btn {
        margin: 0 auto;
    }

    .progres__bottom,
    .progress__bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .progress__wrapper {
        text-align: center;
    }

    .progress__left {
        row-gap: 12px;
        align-items: center; /* <-- shu qo‘shildi */
    }

    .progress__left-title,
    .progress__left-desc {
        text-align: center; /* matn ham markazda bo‘ladi */
    }

    .progress__left-desc {
        text-align: center;
    }

    .progres__bottom__text,
    .progress__bottom__text {
        width: 100%;
        display: none;
        justify-content: center;
    }

    .progres__card,
    .progress__card {
        width: 68px;
        height: 68px;
    }

    .progress__img {
        height: 200px;
    }

    .progres__imag,
    .progress__icon {
        width: 36px;
    }

    .progress__btn {
        max-width: 220px;
        height: 46px;
    }

    .progress__btn a {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .progress__wrapper {
        padding: 18px 12px 28px;
        border-radius: 0 28px 0 28px;
    }

    .progress__left {
        row-gap: 10px;
    }

    .progres__bottom,
    .progress__bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .progres__bottom-cards,
    .progress__bottom-cards {
        gap: 10px;
    }

    .progres__card,
    .progress__card {
        width: 60px;
        height: 60px;
    }

    .progres__imag,
    .progress__icon {
        width: 30px;
    }
}

/* ===== Progress ===== */

/* ===== Slider ===== */
.sliders {
    padding: 60px 10px;
    overflow: hidden;
}

.slider__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.slider__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-left,
.slider-right {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0061fe;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
}

.slider-left:hover {
    background-color: #0061fe;
}

.slider-right:hover {
    background-color: #0061fe;
}

.slider__title {
    font-weight: 700;
    font-size: 48px;
    color: #1f2937;
}

.slider__bottom {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
}

.slider__track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.slider__card {
    flex: 0 0 280px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: all 0.3s ease;
}

.slider__card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.slider__img {
    width: 190px;
    height: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .slider__title {
        font-size: 36px;
    }

    .slider__card {
        flex: 0 0 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .slider__title {
        font-size: 28px;
        text-align: center;
    }

    .slider__card {
        flex: 0 0 180px;
        height: 150px;
    }

    .slider__img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .slider__title {
        font-size: 20px;
    }

    .slider-left,
    .slider-right {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: #0061fe;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        cursor: pointer;
    }

    .slider__card {
        flex: 0 0 calc((100% - 20px) / 2); /* 2 ta card yonma-yon */
        height: 160px;
    }

    .slider__img {
        width: 100px;
    }
}

@media (max-width: 360px) {
    .slider__card {
        flex: 0 0 100%; /* faqat 1 card ekranga to‘liq joylashadi */
        height: 150px;
    }

    .slider__img {
        width: 80px;
    }

    .slider__title {
        font-size: 12px;
    }
}

/* ===== Slider ===== */

/* ===== Answer ===== */
.answer {
    padding: 60px 5px;
}

.answers__title {
    font-weight: 700;
    font-size: 48px;
    color: #1f2937;
    text-align: center;
    height: auto;
}

.answers__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 70px;
    gap: 80px;
}

.answers-left {
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 20px;
    border: none;
    border-radius: 12px;
    margin-bottom: 5px;
    background-color: white;
    height: 100px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.faq-question:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.faq-item {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.collapse {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border: none;
}

.collapse__title {
    font-weight: 500;
    font-size: 16px;
    color: black;
}

.icon {
    font-size: 20px;
    font-weight: bold;
    background-color: #0061fe;
    color: white;
    border-radius: 50%;
    padding: 2px 10px 4px 10px;
}

.faq__title {
    font-weight: bold;
    font-size: 16px;
    color: #1b1139;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-span {
    color: #7e7b7b;
}

.answer__right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
}

.answer__img {
    max-width: 300px;
    width: 100%;
    height: 270px;
    margin: 0 auto;
}

.answer__right-title {
    font-weight: bold;
    font-size: 32px;
    color: black;
    text-align: center;
}

.answer__right-desc {
    font-weight: 500;
    font-size: 16px;
    color: black;
    text-align: center;
}

.answer__btn {
    max-width: 230px;
    width: 100%;
    padding: 20px 0;
    background-color: #0061fe;
    border: none;
    border-radius: 15px;
    margin: 0 auto;
    font-weight: bold;
    font-size: 16px;
    color: white;
    text-align: center;
    text-decoration: none;
}

.answer__btn:hover {
    color: white;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .answers__wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .answers-left {
        max-width: 100%;
    }

    .answer__img {
        max-width: 250px;
        height: auto;
    }
}

@media (max-width: 576px) {
    .answer {
        padding: 60px 20px;
    }

    .answers__title {
        font-size: 32px;
    }

    .answer__right {
        margin-top: 50px;
    }

    .answer__right-title {
        font-size: 24px;
    }

    .answer__btn {
        font-size: 16px;
    }

}

/* ===== Answer ===== */

/* ===== Сontact ===== */

.contact {
    padding: clamp(40px, 6vw, 60px) 5px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f5fbff;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: clamp(20px, 4vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form,
.contact-info {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: clamp(20px, 5vw, 60px) clamp(16px, 4vw, 50px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2,
.contact-info h2 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    color: #1a2e44;
    margin-bottom: 25px;
}

.form-group label {
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: clamp(13px, 2vw, 14px);
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: clamp(10px, 2vw, 12px);
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #0056b3;
}

/* Contact Info */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.info-title {
    padding-bottom: 20px;
}

.icon-circle {
    width: clamp(32px, 4vw, 40px);
    height: clamp(32px, 4vw, 40px);
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-circle i {
    color: #fff;
    font-size: clamp(14px, 2vw, 18px);
}

.info-item div h5 {
    font-size: clamp(14px, 2.5vw, 20px);
    font-weight: bold;
    color: black;
}

.info-item div p {
    font-size: clamp(12px, 2vw, 14px);
    color: #666;
    margin: 5px 0 0;
}

.info__icons {
    margin-top: 70px;
    border-top: 1px solid lightblue;
    padding: 10px 0 0 0;
}

.social__title {
    font-size: clamp(16px, 3vw, 26px);
    font-weight: 500;
    color: black;
    margin-bottom: 20px;
}

.socialss {
    gap: 15px;
    margin: 0;
    padding: 0;
}

.socialss a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #006aff;
    border-radius: 7px;
    font-size: 20px;
    color: white;
    transition: 0.3s;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .contact {
        padding: 30px 15px;
    }

    .contact-form,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 360px) {
    .contact {
        padding: 20px 10px;
    }

    .icon-circle {
        margin-right: 10px;
    }

    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
    }

    .socials {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* ===== Сontact ===== */

/* ===== Footer ===== */
.footer {
    background: white;
    padding-top: 60px;
    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 h4 {
    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;
    }
}

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

body {
    font-family: "Segoe UI", Tahoma, sans-serif;
    background: #f5f7fa;
    padding: 20px;
}

/* ===== TimeLine ===== */
.timeline {
    background-color: #ffffff;
}

.timeline-wrapper {
    display: flex;
    /* position: relative; */
    padding: 60px 0;
}

.timeline-left {
    padding-top: 54px;
    display: flex;
    flex-direction: column;
    z-index: 6;
}

.timeline-left h3 {
    font-size: 40px;
    font-weight: 600;
    max-width: 486px;
    line-height: 56px;
    padding-bottom: 50px;
}

.timeline-left h3 span {
    color: #0061fe;
}

.btn-accardion {
    display: flex;
    gap: 12px;
    margin-top: 48px;
    margin-bottom: 12px;
    margin-left: 8px;
}

.btn-accardion > button {
    border: none;
    border-radius: 50%;
    padding: 20px 30px;
    background-color: #E3EDFA;
    color: #0052d6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accardion > button:hover {
    background-color: #0061fe;
    color: white;
}

.btn-accardion > button:disabled {
    background-color: #ebeff4;
    cursor: not-allowed;
}

.btn-accardion > button > i {
    font-size: 32px;
}

.frame-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 648px;
    height: 422px;
    z-index: 3;
}

.frame-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 120px;
    height: 100%;
    max-height: 113.8px;
    background-color: #0061fe;
    border-radius: 20px;
}

.frame-bg::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 201px;
    height: 100%;
    max-height: 190.48px;
    background-color: #f3ac50;
    border-radius: 20px;
}

.frame-bg img {
    width: 100%;
    max-width: 613.87px;
    height: 100%;
    height: 388.93px;
    border-radius: 20px;
    object-fit: cover;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.timeline-right {
    position: relative;
    top: 20px;
    right: 350px;
    z-index: 0;
}

.timeline-gray-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border: 4px solid #8f949b;
    border-radius: 50%;
}

.timeline-white-circle {
    position: absolute;
    top: -2px;
    right: 5px;
    width: 695px;
    height: 695px;
    background-color: #ffffff;
    border-radius: 50%;
}

.timeline-blue-circle {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 620px;
    height: 620px;
    background-color: #0061fe;
    border-radius: 50%;
}

.timeline-content-wrapper {
    position: absolute;
    top: 0px;
    right: 20px;
    width: 620px;
    height: 620px;
    background-color: #f9fafa;
    border-radius: 50%;
}

.progress-content {
    margin-top: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    transition: all 0.3s ease;
}

.progress-title {
    text-align: center;
    max-width: 420px;
    font-weight: 600 !important;
    font-size: 32px !important;
}

.progress-text {
    width: 100%;
    max-width: 457px;
    font-size: 22px;
    font-weight: 500;
    /* /////////////// */
    text-align: center;
}

.date-first {
    position: absolute;
    right: 130px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.date-second {
    position: absolute;
    top: 120px;
    right: -95px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.date-third {
    position: absolute;
    top: 280px;
    right: -75px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.date-fourth {
    position: absolute;
    top: 450px;
    right: -133px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.date-fifth {
    position: absolute;
    top: 600px;
    right: -148px;
    display: flex;
    align-items: flex-start;
    gap: 7px;
}

.date-btn {
    width: 21px;
    height: 21px;
    background-color: #8f949b;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-btn.active {
    background-color: #0061fe;
    transform: scale(1.2);
}

.date-btn:hover {
    background-color: #0061fe;
    transform: scale(1.1);
}

.date-text {
    font-size: 26px;
    font-weight: 700;
}


@media (max-width: 1300px) {
    .timeline-wrapper {
        padding: 60px 40px;
    }

    .timeline-left {
        padding-top: 40px;
    }

    .btn-accardion {
        margin-top: 40px;
        margin-bottom: 100px;
        margin-left: 68px;
    }


    .frame-bg {
        width: 538px;
        height: 312px;
    }

    .frame-bg::before {
        width: 100%;
        max-width: 80.57px;
        height: 100%;
        max-height: 73.82px;
    }

    .frame-bg::after {
        width: 100%;
        max-width: 109.81px;
        height: 100%;
        max-height: 103.53px;
    }

    .frame-bg img {
        width: 100%;
        max-width: 513.87px;
        height: 100%;
        height: 288.93px;
    }

    .timeline-right {
        top: 110px;
        right: 310px;
    }

    .timeline-gray-circle {
        width: 600px;
        height: 600px;
    }

    .timeline-white-circle {
        width: 595px;
        height: 595px;
    }

    .timeline-blue-circle {
        top: 30px;
        right: 30px;
        width: 540px;
        height: 540px;
    }

    .timeline-content-wrapper {
        width: 540px;
        height: 540px;
    }

    .progress-content {
        margin-top: 100px;
    }

    .progress-title {
        max-width: 350px;
        font-size: 28px !important;
    }

    .progress-text {
        width: 100%;
        max-width: 360px;
        font-size: 18px;
    }

    .date-first {
        right: 122px;
    }

    .date-second {
        top: 90px;
        right: -50px;
    }

    .date-third {
        top: 210px;
        right: -50px;
    }

    .date-fourth {
        top: 350px;
        right: -103px;
    }

    .date-fifth {
        top: 480px;
        right: -120px;
    }

    .date-btn {
        width: 14px;
        height: 14px;
    }

    .date-btn.active {
        transform: scale(1.2);
    }

    .date-btn:hover {
        transform: scale(1.1);
    }

    .date-text {
        font-size: 18px;
    }
}

@media (max-width: 1000px) {
    .timeline-wrapper {
        padding: 50px 15px;
    }

    .timeline-left {
        padding-top: 0;
    }

    .timeline-left h3 {
        font-size: 32px;
        font-weight: 600;
        max-width: 486px;
        line-height: 46px;
        padding-bottom: 40px;
    }

    .btn-accardion {
        gap: 10px;
        margin-top: 0px;
        margin-bottom: 200px;
        margin-left: 68px;
    }

    .btn-accardion > button {
        padding: 11px 19px;
    }

    .btn-accardion > button > i {
        font-size: 20px;
    }

    .frame-bg {
        width: 386.4px;
        height: 251.64px;
    }

    .frame-bg::before {
        content: "";
        position: absolute;
        width: 100%;
        max-width: 71.57px;
        height: 100%;
        max-height: 67.82px;
        background-color: #0061fe;
    }

    .frame-bg::after {
        content: "";
        position: absolute;
        width: 100%;
        max-width: 119.81px;
        height: 100%;
        max-height: 113.53px;
        background-color: #f3ac50;
    }

    .frame-bg img {
        width: 100%;
        max-width: 366.02px;
        height: 100%;
        height: 232.17px;
        border-radius: 20px;
        object-fit: cover;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    .timeline-right {
        max-width: 400px;
        top: 120px;
        right: 300px;
        z-index: 0;
    }

    .timeline-gray-circle {
        width: 437.56px;
        height: 437.56px;
    }

    .timeline-white-circle {
        position: absolute;
        top: -2px;
        right: 5px;
        width: 432px;
        height: 432px;
        background-color: #ffffff;
        border-radius: 50%;
    }

    .timeline-blue-circle {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 393px;
        height: 393px;
        background-color: #0061fe;
        border-radius: 50%;
    }

    .timeline-content-wrapper {
        position: absolute;
        top: 0px;
        right: 20px;
        width: 390px;
        height: 390px;
        background-color: #f9fafa;
        border-radius: 50%;
    }

    .progress-content {
        margin-top: 83px;
        gap: 14px;
    }

    .progress-title {
        max-width: 297px;
        font-size: 20px !important;
    }

    .progress-text {
        width: 100%;
        max-width: 306px;
        font-size: 16px;
    }

    .date-first {
        right: 62px;
    }

    .date-second {
        top: 70px;
        right: -73px;
    }

    .date-third {
        top: 170px;
        right: -55px;
    }

    .date-fourth {
        top: 300px;
        right: -83px;
    }

    .date-fifth {
        top: 400px;
        right: -73px;
    }
}

@media (max-width: 780px) {
    .timeline-right {
        top: 120px;
        right: 380px;
        z-index: 0;
    }

    .date-btn {
        width: 14px;
        height: 14px;
    }

    .date-text {
        font-size: 18px;
    }
}

@media (max-width: 650px) {
    .btn-accardion {
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 239px;
        margin-left: 0;
    }

    .btn-accardion > button {
        padding: 7px 15px;
    }

    .btn-accardion > button > i {
        font-size: 12px;
    }

    .frame-bg {
        width: 217px;
        height: 153px;
    }

    .frame-bg::before {
        max-width: 45px;
        max-height: 43px;
        border-radius: 12px;
    }

    .frame-bg::after {
        max-width: 65.5px;
        max-height: 61.88px;
        border-radius: 12px;
    }

    .frame-bg img {
        max-width: 201px;
        height: 138px;
        border-radius: 12px;
    }


    .timeline-right {
        top: 220px;
        right: 420px;
    }

    .timeline-gray-circle {
        width: 337.56px;
        height: 337.56px;
    }

    .timeline-white-circle {
        position: absolute;
        top: -2px;
        right: 5px;
        width: 332px;
        height: 332px;
        background-color: #ffffff;
        border-radius: 50%;
    }

    .timeline-blue-circle {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 293px;
        height: 293px;
        background-color: #0061fe;
        border-radius: 50%;
    }

    .timeline-content-wrapper {
        position: absolute;
        top: 0px;
        right: 20px;
        width: 290px;
        height: 290px;
        background-color: #f9fafa;
        border-radius: 50%;
    }

    .progress-content {
        margin-top: 63px;
        gap: 13px;
    }

    .progress-title {
        max-width: 237px;
        font-size: 18px !important;
    }

    .progress-text {
        width: 100%;
        max-width: 260px;
        font-size: 12px;
    }

    .date-first {
        right: 40px;
    }

    .date-second {
        top: 60px;
        right: -67px;
    }

    .date-third {
        top: 140px;
        right: -47px;
    }

    .date-fourth {
        top: 230px;
        right: -67px;
    }

    .date-fifth {
        top: 300px;
        right: -73px;
    }

    .date-btn {
        width: 14px;
        height: 14px;
    }

    .date-text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .timeline-wrapper {
        padding: 20px 30px;
    }

    .timeline-left {
        padding-top: 0;
    }

    .timeline-left h3 {
        font-size: 26px;
        max-width: 300px;
        line-height: 32px;
        padding-bottom: 0;
    }

    .btn-accardion {
        gap: 10px;
        margin-bottom: 139px;
        margin-left: 0;
    }

    .btn-accardion > button {
        padding: 7px 15px;
    }

    .btn-accardion > button > i {
        font-size: 12px;
    }

    .frame-bg {
        width: 177px;
        height: 113px;
    }

    .frame-bg::before {
        max-width: 35px;
        max-height: 33px;
        border-radius: 12px;
    }

    .frame-bg::after {
        max-width: 55.5px;
        max-height: 51.88px;
        border-radius: 12px;
    }

    .frame-bg img {
        max-width: 171.12px;
        height: 108px;
        border-radius: 12px;
    }


    .timeline-right {
        top: 100px;
        right: 290px;
    }

    .timeline-gray-circle {
        width: 242.34px;
        height: 242.34px;
        border: 2px solid #8f949b;
    }

    .timeline-white-circle {
        top: -2px;
        right: 5px;
        width: 242px;
        height: 224px;
    }

    .timeline-blue-circle {
        top: 15px;
        right: 10px;
        width: 218px;
        height: 218px;
    }

    .timeline-content-wrapper {
        top: 0px;
        right: 10px;
        width: 215px;
        height: 215px;
    }

    .progress-content {
        margin-top: 35px;
        gap: 13px;
    }

    .progress-title {
        max-width: 120px;
        font-size: 12px !important;
    }

    .progress-text {
        max-width: 180px;
        font-size: 8px;
    }

    .date-first {
        right: 20px;
    }

    .date-second {
        top: 30px;
        right: -51px;
    }

    .date-third {
        top: 70px;
        right: -34px;
    }

    .date-fourth {
        top: 120px;
        right: -74px;
    }

    .date-fifth {
        top: 180px;
        right: -73px;
    }

    .date-fifth > .date-text {
        max-width: 80px;
    }

    .date-btn {
        width: 8px;
        height: 8px;
    }

    .date-text {
        font-size: 12px;
    }
}

@media (max-width: 350px) {

    .timeline-left h3 {
        font-size: 22px;
        max-width: 280px;
        line-height: 32px;
        padding-bottom: 0;
    }
}


