
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background: #f5f7fb;
            display: flex;
            min-height: 100vh;
        }

        /* SIDEBAR */
        .sidebar {
            width: 20%;
            background: #fff;
            height: 100vh;
            padding: 25px;
            border-right: 1px solid #eee;
            position: sticky;
            top: 0;
            transition: transform 0.3s ease;
        }

        .logo {
            font-size: 45px;
            font-weight: bolder;
            margin-bottom: 5px;
        }

        .sidebar h3 {
            color: #000;
            margin: 5px 0 30px 0;
            font-size: 40px;
            font-weight: 500;
        }

        .menu button {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 28px;
            cursor: pointer;
            text-align: left;
            transition: 0.3s;
        }

        .menu button.active,
        .menu button:hover {
            background: #4CAF50;
            color: #fff;
            border-color: #4CAF50;
        }

        /* BURGER BUTTON */
        .burger {
            display: none;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 8px 12px;
            cursor: pointer;
            font-size: 20px;
        }

        /* MAIN PANEL */
        .main {
            flex: 1;
            padding: 20px;
            min-width: 0;
        }

        /* TOP BAR */
        .topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            gap: 15px;
        }

        .sreachbox {
            width: 90%;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 2px solid #ddd !important;
            border-radius: 25px;
            background: transparent;
            overflow: hidden;
        }

        .sreachbox button {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 15px;
        }

        .search {
            width: 100%;
            padding: 12px;
            border: none;
            outline: none;
            background: transparent;
        }

        /* CARD GRID */
        .main .grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
        }

        .card {
            background: #4CAF50;
            color: #fff;
            border-radius: 15px;
            padding: 15px;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            background: #fff;
            border-radius: 10px;
            margin-bottom: 10px;
        }

        .card h3 {
            margin-bottom: 5px;
            font-size: 24px;
            color: #000;
        }

        .card p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 10px;
            line-height: 1.4;
            color: #000;
        }

        .price {
            font-weight: bold;
            color: #000;
            font-size: 18px;
        }

        .card button.more-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            background: #fff;
            color: #000;
            font-weight: bold;
            font-size: 16px;
            transition: 0.2s;
        }

        .card button.more-btn:hover {
            background: #e0e0e0;
        }

        .prisegroup {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
        }

        /* MODAL WINDOWS SYSTEM */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 85vh;
            overflow-y: auto;
            position: relative;
            color: #333;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 30px;
            background: none;
            border: none;
            cursor: pointer;
            color: #777;
        }

        /* Detail Modal Styles */
        #modal-img {
            width: 100%;
            height: 300px;
            object-fit: contain;
            background: #f5f7fb;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        #modal-title {
            font-size: 32px;
            margin-bottom: 15px;
            color: #000;
        }

        #modal-desc {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #555;
        }

        .submit-request-btn {
            width: 100%;
            padding: 15px;
            background: #4CAF50;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-request-btn:hover {
            background: #439a46;
        }

        /* Form Modal Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            font-size: 16px;
        }

        .form-group input {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
        }

        .form-group input:focus {
            border-color: #4CAF50;
        }

        .form-group input[readonly] {
            background: #eee;
            cursor: not-allowed;
        }

        /* RESPONSIVE BREAKPOINTS */
        @media(max-width: 1200px) {
            .main .grid {
                grid-template-columns: repeat(3, 1fr);
                padding: 30px;
            }
        }

        @media(max-width: 800px) {
            .sidebar {
                display: none;
                position: fixed;
                z-index: 1000;
                left: 0;
                top: 0;
                height: 100vh;
                box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
            }

            .sidebar.active {
                display: block;
                width: 70%;
            }

            .burger {
                display: block;
            }

            .main .grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 20px;
            }

            .search {
                width: 100%;
            }
        }

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

        .noscrol {
            overflow: hidden;
        }
/* HERO BLOCK STYLES */
.hero-block {
   
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    overflow: hidden;
    position: relative;
}

/* Orqa fondagi yorug'lik effekti (Glow) */
.hero-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 60%;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 44px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9) !important; /* Mavjud global stillarni bosish uchun */
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-actions button {
    padding: 14px 28px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-btn-primary {
    background: #fff;
    color: #2E7D32 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff !important;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    animation: float 4s ease-in-out infinite; /* Robotning suzish animatsiyasi */
}

/* Suzish effektining animatsiyasi */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* RESPONSIVE (Mobil qurilmalar uchun moslashuvchanlik) */
@media(max-width: 1000px) {
    .hero-block {
        flex-direction: column-reverse;
        padding: 35px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image img {
        height: 220px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
}