body {
    font-family: Arial;
    margin: 0;
    background: #fff8f0;
}

/* Navbar */
header {
    background: gold;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

header h1 {
    margin: 0;
}

nav a {
    margin: 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    animation: slide 9s infinite;
}

.slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@keyframes slide {
    0% { margin-left: 0; }
    33% { margin-left: -100%; }
    66% { margin-left: -200%; }
}

/* Products */
.products {
    text-align: center;
    padding: 20px;
}

.product-card {
    display: inline-block;
    background: white;
    margin: 15px;
    padding: 15px;
    border-radius: 10px;
    width: 200px;
    box-shadow: 0 0 10px #ccc;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

button {
    background: green;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}/* Menu Button */
.menu-btn {
    font-size: 25px;
    cursor: pointer;
    display: none;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: gold;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 1000;
}

.side-menu a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
}
/* Products Section */
.products {
    padding: 20px;
    text-align: center;
}

/* Grid Container */
.product-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 in desktop */
    gap: 20px;
}

/* Product Card */
.product-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
/* Section */
.about-section {
    padding: 50px 20px;
    background: #fff8f0;
}

/* Container */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

/* Image */
.about-image img {
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Content */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    color: #b8860b;
    margin-bottom: 10px;
}

/* Boxes */
.box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
}

/* Vision */
.vision {
    background: #fff3cd;
}

/* Mission */
.mission {
    background: #e6f7ff;
}

.mission ul {
    padding-left: 20px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
    }
}
/* 📱 Mobile View → 2 per row */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile View */
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .menu-btn {
        display: block;
    }
}