body {
    font-family: 'SolaimanLipi', sans-serif;
    margin: 0;
    background: #e8f5e9;
    color: #222;
    text-align: center;
}

.hero {
    padding: 60px;
    background: linear-gradient(120deg, #66bb6a, #2e7d32);
    color: white;
}

.gallery {
    display: flex;
    gap: 10px;
    padding: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery img {
    width: 300px;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.about {
    background: #fff3e0;
    padding: 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.products {
    padding: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.order {
    padding: 50px;
}

button {
    background: #1b5e20;
    color: white;
    padding: 15px 35px;
    border: none;
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #2e7d32;
}