/* site.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: rgb(255, 255, 255);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 200px;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2000;
}

    .top-bar .social-icons {
        margin-left: 0;
    }

        .top-bar .social-icons img {
            width: 20px;
            height: 20px;
            margin-right: 25px;
        }

        .top-bar .social-icons a:hover img {
            opacity: 0.8;
        }

    .top-bar .phone-number {
        margin-right: 0;
    }

        .top-bar .phone-number p {
            font-size: 16px;
            font-weight: 400;
        }

header {
    background-color: rgb(255, 255, 255);
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.nav-left, .nav-right {
    list-style: none;
    display: flex;
    flex: 1;
    align-items: center;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 100px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 180px;
  
}

    .nav-left li, .nav-right li {
        margin: 0 20px;
    }

        .nav-left li a, .nav-right li a {
            color: #000;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

            .nav-left li a:hover, .nav-right li a:hover {
                color: #4CAF50;
            }

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

    .logo img {
        width: 220px;
        height: auto;
        margin-top: 30px;
        margin-bottom: 30px;
        margin-right: 40px;
    }

.search-bar button {
    padding: 5px 0px;
    background-color: #fff;
    border: none;
    cursor: pointer;
}

    .search-bar button img {
        width: 16px;
        height: 16px;
    }

    .search-bar button:hover {
        background-color: #ddd;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
}

    .hamburger img {
        width: 30px;
        height: 30px;
    }

.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 80px;
}

/* Slayder umumiy stillari */
.slide-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px; /* Kompyuter uchun balandlik */
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 80px auto;
    overflow: hidden;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 3.0s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .prev-slide:hover,
    .next-slide:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .prev-slide img,
    .next-slide img {
        width: 20px;
        height: 20px;
    }

/* Mobil qurilmalar uchun moslashuv */
@media (max-width: 768px) {
    .slide-container {
        width: 100%; /* To‘liq kenglik */
        max-width: 100%;
        height: 400px; /* Mobil uchun balandlik */
        margin: 40px auto;
        border-radius: 10px;
    }

    .slides {
        height: 100%;
    }

    .slide {
        height: 100%;
        background-size: cover; /* Yoki contain ishlatish mumkin */
        background-position: center;
    }

    .slide-nav {
        bottom: 15px;
        right: 15px;
    }

    .prev-slide,
    .next-slide {
        width: 35px;
        height: 35px;
    }

        .prev-slide img,
        .next-slide img {
            width: 18px;
            height: 18px;
        }
}

@media (max-width: 480px) {
    .slide-container {
        height: 300px; /* Kichik ekranlar uchun */
        margin: 30px auto;
    }

    .slide-nav {
        bottom: 10px;
        right: 10px;
    }

    .prev-slide,
    .next-slide {
        width: 30px;
        height: 30px;
    }

        .prev-slide img,
        .next-slide img {
            width: 16px;
            height: 16px;
        }
}

.details-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 26, 117));
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

    .details-btn:hover {
        transform: translateY(-2px);
    }

.slide-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.prev-slide,
.next-slide {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .prev-slide:hover,
    .next-slide:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .prev-slide img,
    .next-slide img {
        width: 20px;
        height: 20px;
    }

.about-container {
    width: 100%;
    height: 220px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 150px;
    color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

.left-section {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

    .left-section h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .left-section .highlight {
        color: #4CAF50;
        font-size: 22px;
        font-weight: 400;
        margin-right: 5px;
        margin-top: 15px;
    }

    .left-section p {
        font-size: 14px;
        line-height: 1.5;
        color: #000;
    }

.right-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.experience-wrapper {
    position: relative;
    display: inline-block;
    padding: 18px;
    border-radius: 8px;
    background: transparent;
    z-index: 1;
}

    .experience-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1.0px;
        background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
        border-radius: 8px;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        -webkit-mask-composite: exclude;
        z-index: -1;
    }

.experience {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    gap: 100px;
}

    .experience div {
        text-align: center;
        flex: 1;
        position: relative;
    }

        .experience div:not(:last-child)::after {
            content: '';
            display: block;
            width: 1px;
            height: 70px;
            background: linear-gradient(to bottom, rgba(31, 106, 70, 1), rgba(85, 60, 130, 1));
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
        }

        .experience div span {
            display: block;
            font-size: 30px;
            font-family: 'Fraunces';
            background: linear-gradient(to bottom, rgba(31, 106, 70, 1), rgba(85, 60, 130, 1));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .experience div p {
            font-size: 10px;
            font-weight: bold;
            margin-top: 4px;
            text-transform: uppercase;
            color: #222;
            font-family: 'Poppins', sans-serif;
        }

/* Catalog Container */
.catalog-container {
    text-align: center;
    margin: 40px 0;
    background-color: #fff;
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 28, 112));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
}

.catalog {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Har bir qatorda 3 ta element */
    gap: 20px;
    padding: 20px;
}

.catalog-item {
    position: relative;
    width: 100%;
    height: 200px; /* Balandlikni to'rtburchak shakl uchun moslashtirdik */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .catalog-item:hover {
        transform: translateY(-5px);
    }

    .catalog-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(50%);
        transition: filter 0.3s ease;
    }

    .catalog-item:hover img {
        filter: brightness(70%);
    }

.catalog-text {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border-radius: 8px;
    border-left: 3px solid rgba(200, 200, 200, 0.9);
    border-right: 3px solid rgba(200, 200, 200, 0.9);
    border-top: 1px solid rgba(200, 200, 0, 0.5);
    border-bottom: 1px solid rgba(200, 200, 0, 0.5);
    box-shadow: inset 1px 0 3px rgba(0, 0, 0, 0.1), inset -1px 0 3px rgba(0, 0, 0, 0.1), 1px 0 3px rgba(255, 255, 255, 0.2), -1px 0 3px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

    .catalog-text h1 {
        font-size: 16px;
        color: #fff;
        margin: 0;
        font-weight: bold;
        text-transform: uppercase;
        width: 100%;
        padding: 10px;
    }
.recommend-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background-image: url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

.recommend-title {
    position: static;
    font-size: 38px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.recommend-container h1.recommend-title {
    margin-top: 40px;
}

.recommend-container h2.recommend-title {
    position: static;
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
    background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.recommend-container .items-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.recommend-container .item {
    width: 32%;
    height: 250px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .recommend-container .item:hover {
        transform: translateY(-5px);
    }

.recommend-container .h1-item {
    font-size: 20px;
    font-weight: 700;
    color: rgb(65, 28, 112);
    margin-bottom: 10px;
}

.recommend-container .p-item {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.contact-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

    .contact-container .left-section1 {
        width: 50%;
        height: 100%;
        position: relative;
        margin: 0;
    }

    .contact-container .contact-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        filter: brightness(40%);
    }

    .contact-container .contact-title {
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #fff !important;
        white-space: normal;
        overflow-wrap: break-word;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .contact-container .contact-subtitle {
        position: absolute;
        top: 100px;
        left: 20px;
        font-size: 32px;
        font-weight: 500;
        margin-bottom: 8px;
        color: #fff;
        line-height: 1.2;
        white-space: normal;
        overflow-wrap: break-word;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 10px;
        border-radius: 5px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

        .contact-container .contact-subtitle .highlight {
            color: #b1b1b1;
            font-weight: 700;
        }

    .contact-container .right-section1 {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 20px;
        background: linear-gradient(to right, rgb(189, 223, 198), rgb(150, 126, 182));
        border-radius: 0 10px 10px 0;
    }

    .contact-container .feedback-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-container .feedback-text {
        font-size: 18px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .contact-container .feedback-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        .contact-container .feedback-form input,
        .contact-container .feedback-form textarea {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid rgb(51, 176, 100);
            border-radius: 5px;
            margin-bottom: 15px;
            box-sizing: border-box;
            box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(255, 255, 255, 0.2);
            background: #fff;
        }

            .contact-container .feedback-form input::placeholder,
            .contact-container .feedback-form textarea::placeholder {
                color: #999;
                font-size: 14px;
            }

        .contact-container .feedback-form .input-row {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 48%;
        }

        .contact-container .feedback-form textarea {
            resize: vertical;
        }

        .contact-container .feedback-form button {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            color: #fff;
            background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 26, 117));
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

            .contact-container .feedback-form button:hover {
                transform: translateY(-2px);
            }

.partners {
    width: 80%;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
}

    .partners h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        display: inline-block;
    }

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

    .partner-logos img {
        width: 200px;
        height: 100px;
        object-fit: contain;
        border-radius: 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .partner-logos img:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

.footer {
    background: linear-gradient(to right, rgba(0, 158, 61), rgba(99, 60, 139));
    padding: 40px 0;
    color: #fff;
    border-top: 2px solid #fff;
}

.footer-container {
    width: 80%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    width: 40%;
}

.footer-logo img {
    width: 400px;
    height: auto;
}

.footer-right {
    width: 60%;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin-left: 40px;
}

    .footer-column h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 15px;
        background: white;
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
    }

    .footer-column ul {
        list-style: none;
    }

        .footer-column ul li {
            margin-bottom: 10px;
        }

            .footer-column ul li a {
                color: #fff;
                text-decoration: none;
                font-size: 14px;
                transition: color 0.3s ease;
            }

                .footer-column ul li a:hover {
                    color: #ddd;
                }

.footer-divider {
    width: 100%;
    height: 1px;
    background: white;
    margin: 15px 0;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

    .footer-socials img {
        width: 20px;
        height: 20px;
        transition: opacity 0.3s ease;
    }

    .footer-socials a:hover img {
        opacity: 0.8;
    }

.footer-bottom {
    width: 90%;
    margin: 40px auto 0;
    text-align: center;
}

.bottom-divider {
    width: 100%;
    height: 1px;
    background: white;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-left,
.copyright-right {
    flex: 1;
}

.copyright-left {
    text-align: left;
}

.copyright-right {
    text-align: right;
}

.footer-copyright p {
    font-size: 12px;
    color: #fff;
    margin: 0;
}

.copyright-right a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .copyright-right a:hover {
        color: #fff;
    }

.productcategory-container {
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 100px;
    margin-bottom: 30px;
    box-sizing: border-box;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .filter-btn.active {
        background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
        color: #fff;
        border: none;
    }

    .filter-btn:hover {
        background-color: #f0f0f0;
    }

.search-bar {
    display: flex;
    align-items: center; 
    justify-content: center;
    align-items: center;
    gap: 5px;
}

    .search-bar input {
        padding: 10px;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 5px;
        width: 200px;
    }

    .search-bar button {
        padding: 10px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
    }

        .search-bar button img {
            width: 16px;
            height: 16px;
        }

        .search-bar button:hover {
            background-color: #f0f0f0;
        }

.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-item {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-top: 1px solid #4CAF50;
    border-bottom: 1px solid #4CAF50;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

    .product-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.product-inner {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border-radius: 8px;
    border-left: 1px solid #4CAF50;
    border-right: 1px solid #4CAF50;
    z-index: 2;
}

    .product-inner img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        padding: 0px;
    }
    .product-inner h3 {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin: 10px 0;
        padding: 0 10px;
        line-height: 1.2;
    }

@media (max-width: 1024px) {
    .products-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .experience-wrapper {
        padding: 10px;
    }

    .experience {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

        .experience div {
            flex: none;
        }

            .experience div:not(:last-child)::after {
                display: none; 
            }

            .experience div span {
                font-size: 35px;
            }

            .experience div h1 {
                font-size: 14px;
            }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0px;
        justify-content: center;
        align-items: center;
    }

        .top-bar .social-icons {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .top-bar .phone-number {
            text-align: center;
            width: 100%;
        }

    nav {
        flex-direction: row;
        justify-content: center;
        align-content: center;
        align-items: center;
        position: relative;
        padding: 10px 20px;
    }

    .logo {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        top: 15px;
    }

        .logo img {
            width: 180px;
            margin: 0 auto;
            margin-top: 10px;
            margin-bottom: 0px;
        }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

        .hamburger img {
            width: 25px;
            height: 25px;
            margin-top: 10px;
            margin-bottom: 0px;
        }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 20px 0;
        border-top: 1px solid #ddd;
        text-align: center;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        align-items: center;
    }

        .nav-menu.active {
            display: flex;
        }

    .nav-left, .nav-right {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0;
    }

        .nav-left li, .nav-right li {
            margin: 10px 0;
            width: 100%;
            text-align: center;
        }

            .nav-left li a, .nav-right li a {
                font-size: 20px;
                color: #000;
                display: block;
                width: 100%;
            }

                .nav-left li a:hover, .nav-right li a:hover {
                    color: #4CAF50;
                }

    .search-bar {
        margin-top: 15px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

/*    .slide-container {
        height: auto;
        padding: 20px;
    }

    .slide {
        flex-direction: column;
        padding: 20px;
    }

    .slide-left,
    .slide-right {
        width: 100%;
        text-align: center;
    }

        .slide-left img {
            max-width: 200px;
            margin-bottom: 20px;
        }

        .slide-right h2 {
            font-size: 24px;
        }

        .slide-right ul li {
            font-size: 14px;
        }
*/
    .details-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .about-container {
        flex-direction: column;
        height: auto;
        padding: 30px;
        gap: 20px;
        align-items: center;
    }

    .left-section {
        padding-right: 0;
        text-align: center;
    }

    .right-section {
        justify-content: center;
    }

    .catalog {
        grid-template-columns: 1fr;
    }

    .recommend-container {
        height: auto;
        padding: 20px;
    }

        .recommend-container .items-wrapper {
            flex-direction: column;
            gap: 20px;
        }

        .recommend-container .item {
            width: 100%;
        }
    .experience-wrapper {
        padding: 10px;
    }

    .experience {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }

        .experience div {
            flex: none;
        }

            .experience div:not(:last-child)::after {
                display: none; 
            }

            .experience div span {
                font-size: 35px;
            }

            .experience div h1 {
                font-size: 14px;
            }
    .contact-container {
        flex-direction: column;
        height: auto;
    }

        .contact-container .left-section1,
        .contact-container .right-section1 {
            width: 100%;
        }

        .contact-container .left-section1 {
            height: 300px;
            position: relative;
        }

        .contact-container .contact-title {
            font-size: 24px;
            top: 15px;
            left: 15px;
            right: 15px;
            white-space: normal;
            overflow-wrap: break-word;
            color: #fff !important;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .contact-container .contact-subtitle {
            font-size: 18px;
            top: 60px;
            left: 15px;
            right: 15px;
            line-height: 1.4;
            white-space: normal;
            overflow-wrap: break-word;
            color: #fff;
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .contact-container .right-section1 {
            border-radius: 0 0 10px 10px;
        }

        .contact-container .feedback-title {
            font-size: 24px;
        }

        .contact-container .feedback-text {
            font-size: 16px;
        }

    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

        .partner-logos img {
            width: 150px;
            height: 75px;
        }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-left, .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        margin-left: 0;
    }

    .footer-logo img {
        width: 300px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .copyright-left,
    .copyright-right {
        text-align: center;
    }

    .productcategory-container {
        height: 150px;
        margin-bottom: 20px;
    }

    .product-title {
        font-size: 24px;
    }

    .filter-container {
        flex-direction: row;
        flex-wrap: nowrap; 
        overflow-x: auto; 
        justify-content: flex-start; 
        gap: 10px;
        padding: 10px;
        white-space: nowrap; 
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
        flex-shrink: 0; 
    }


    .filter-container::-webkit-scrollbar {
        height: 8px;
    }

    .filter-container::-webkit-scrollbar-thumb {
        background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
        border-radius: 4px;
    }

    .filter-container::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px;
    }
    .search-bar {
        padding: 10px;
        justify-content: center; 
    }

        .search-bar input {
            width: 100%; 
            max-width: 300px; 
            padding: 8px;
            font-size: 18px;
        }

    .products-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }

    .product-item {
        height: 200px;
    }

    .product-inner img {
        height: 150px;
    }

    .product-inner h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .productcategory-container {
        height: 120px;
    }

    .product-title {
        font-size: 20px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .product-item {
        height: 180px;
    }

    .product-inner img {
        height: 100px;
    }

    .product-inner h3 {
        font-size: 12px;
    }
    .filter-container {
        padding: 5px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    .search-bar {
        padding: 5px;
    }

        .search-bar input {
            padding: 6px;
            font-size: 14px;
        }

        .search-bar button {
            padding: 6px;
        }

            .search-bar button img {
                width: 12px;
                height: 12px;
            }
}

.error-container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffe6e6;
    border: 1px solid #ff3333;
    border-radius: 5px;
}

    .error-container h3 {
        margin-top: 0;
        color: #ff3333;
    }

    .error-container ul {
        margin: 0;
        padding-left: 20px;
    }

    .error-container li {
        margin-bottom: 5px;
    }

.partners {
    width: 80%;
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    padding: 20px;
}

    .partners h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
        background: linear-gradient(to right, rgb(51, 176, 100) 0%, rgb(65, 26, 117) 50%, rgb(51, 176, 100) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        display: inline-block;
    }

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-card {
    flex: 0 0 18%;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(51, 176, 100, 0.2);
}

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .partner-card span {
        font-size: 16px;
        font-weight: 500;
        color: #333;
        display: block;
        background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 26, 117));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@media (max-width: 1024px) {
    .partners {
        width: 90%;
        padding: 15px;
    }

        .partners h1 {
            font-size: 28px;
            margin-bottom: 20px;
        }

    .partner-card {
        flex: 0 0 22%;
        padding: 10px;
    }

        .partner-card span {
            font-size: 14px;
        }
}

@media (max-width: 768px) {
    .partners {
        width: 100%;
        padding: 15px;
    }

        .partners h1 {
            font-size: 24px;
        }

    .partner-logos {
        gap: 15px;
    }

    .partner-card {
        flex: 0 0 45%;
        padding: 10px;
    }

        .partner-card span {
            font-size: 14px;
        }
}

@media (max-width: 480px) {
    .partners {
        width: 100%;
        padding: 10px;
    }

        .partners h1 {
            font-size: 20px;
            margin-bottom: 15px;
        }

    .partner-logos {
        gap: 10px;
    }

    .partner-card {
        flex: 0 0 100%;
        padding: 8px;
    }

        .partner-card span {
            font-size: 13px;
        }
}




