/* style.css */

/* Karta suzish animatsiyasi */
.main-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Miya logosini yashil rangga bo'yash uchun SVG Mask */
.logo-icon {
    width: 45px;
    height: 45px;
    background-color: #51ff00; /* brand-green */
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 1.74.63 3.33 1.68 4.56C6.26 14.34 6 15.14 6 16c0 1.66 1.34 3 3 3h1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2h1c1.66 0 3-1.34 3-3 0-.86-.26-1.66-.68-2.44C18.37 12.33 19 10.74 19 9c0-3.87-3.13-7-7-7zm0 2c2.76 0 5 2.24 5 5 0 1.25-.46 2.39-1.21 3.26l-.45.52.19.66c.21.73.35 1.49.25 2.22-.09.68-.69 1.18-1.38 1.34H9.6c-.69-.16-1.29-.66-1.38-1.34-.1-.73.04-1.49.25-2.22l.19-.66-.45-.52C7.46 11.39 7 10.25 7 9c0-2.76 2.24-5 5-5z"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 1.74.63 3.33 1.68 4.56C6.26 14.34 6 15.14 6 16c0 1.66 1.34 3 3 3h1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2h1c1.66 0 3-1.34 3-3 0-.86-.26-1.66-.68-2.44C18.37 12.33 19 10.74 19 9c0-3.87-3.13-7-7-7zm0 2c2.76 0 5 2.24 5 5 0 1.25-.46 2.39-1.21 3.26l-.45.52.19.66c.21.73.35 1.49.25 2.22-.09.68-.69 1.18-1.38 1.34H9.6c-.69-.16-1.29-.66-1.38-1.34-.1-.73.04-1.49.25-2.22l.19-.66-.45-.52C7.46 11.39 7 10.25 7 9c0-2.76 2.24-5 5-5z"/></svg>') no-repeat center;
    display: inline-block;
}

/* Mobil qurilmalarda ikonka hajmini kichraytirish */
@media (max-width: 600px) {
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}