:root {
    --uzum-purple: #7e22ce;
    --uzum-yellow: #ffcc00;
}

/* Scroll muammosini oldini olish uchun html va body ga qoidalar qo'shildi */
html, body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    overflow-x: hidden;
    width: 100%;
}

/* Hero Section */
.hero-bg {
    background-color: var(--uzum-yellow);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.btn-purple {
    background-color: var(--uzum-purple);
    color: white;
    transition: 0.3s;
}

.btn-purple:hover {
    background-color: #6b1fad;
    color: white;
    transform: translateY(-2px);
}

/* Feature Icons */
.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--uzum-purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Karusel uchun iPhone Mockup effekti */
.phone-frame {
    /*background: #000;*/
    padding: 10px;
    border-radius: 35px;
    /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);*/
    height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

/* Indikatorlar dizayni */
.custom-indicators {
    bottom: -60px;
}

.custom-indicators [data-bs-target] {
    background-color: #7e22ce !important;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
}

/* 3-Section: To'g'irlangan Telefonlar (iPhone Style) */
.phone-mockup {
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-phone {
    height: 520px;
    width: auto;
    z-index: 5;
    transform: scale(1.05);
    border: 2px solid #eee;
}

.side-phone {
    height: 440px;
    width: auto;
    opacity: 1;
    filter: none;
}

/* ==========================================
   Mobil Moslashuvchanlik (Responsive Media)
   ========================================== */

@media (max-width: 992px) {
    .main-phone {
        height: 350px;
    }
    .side-phone {
        height: 300px;
    }
}

@media (max-width: 768px) {
    /* Telefon ramkalari */
    .phone-frame {
        width: 150px;
        height: 270px;
        padding: 6px;
        border-radius: 20px;
    }

    .phone-frame img {
        border-radius: 15px;
    }

    /* Yon tugmalarni o'chirish */
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }


}
