body {
    /*background: linear-gradient(135deg, #081033, #203680);*/
    background-color: #1b263b; /* quyuq kulrang-ko‘k */






    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: #1f2937;
}
.header-text {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #e9ecef; /* och kul */
    margin: 2.5rem 0;
    animation: slideDown 1s ease-out;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    animation: fadeIn 1.2s ease-out;
}
.card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}
.card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.card img {
    width: 170px;
    object-fit: contain;
    margin: 1rem auto;
    transition: transform 0.3s ease;
    border-radius: 100%;
    box-shadow: 0 5px 30px 0 rgba(0,0,0,0.2);
}
.card:hover img {
    transform: scale(1.1);
}
.card-content {
    padding: 1.5rem;
    text-align: center;
}
.card-content p {
    color: #4b5563;
    font-size: 1rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    padding: 0 55px;
}
.card-content a {
    display: inline-block;
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.card:nth-child(1) a { background: #2563eb; color: #fff; }
.card:nth-child(1) a:hover { background: #1e40af; }
.card:nth-child(2) a { background: #ec4899; color: #fff; }
.card:nth-child(2) a:hover { background: #be185d; }
.card:nth-child(3) a { background: #f59e0b; color: #fff; }
.card:nth-child(3) a:hover { background: #d97706; }
.card:nth-child(4) a { background: #10b981; color: #fff; }
.card:nth-child(4) a:hover { background: #059669; }
.card:nth-child(5) a { background: #06b6d4; color: #fff; }
.card:nth-child(5) a:hover { background: #0891b2; }
.card:nth-child(6) a { background: #8b5cf6; color: #fff; }
.card:nth-child(6) a:hover { background: #6d28d9; }
.card:nth-child(7) a { background: #ef4444; color: #fff; }
.card:nth-child(7) a:hover { background: #b91c1c; }
.card:nth-child(8) a { background: #3b82f6; color: #fff; }
.card:nth-child(8) a:hover { background: #1d4ed8; }
.card:nth-child(9) a { background: #14b8a6; color: #fff; }
.card:nth-child(9) a:hover { background: #0f766e; }
.card:nth-child(10) a { background: #6366f1; color: #fff; }
.card:nth-child(10) a:hover { background: #4f46e5; }
.card:nth-child(11) a { background: #6b7280; color: #fff; }
.card:nth-child(11) a:hover { background: #4b5563; }
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}