body {
    font-family: 'Segoe UI', sans-serif;
}

.banner {
    background: linear-gradient(to right, #2e7d32, #66bb6a);
    color: #fff;
    padding: 80px 0;
}

.search-box {
    display: flex;
    max-width: 500px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
}

.search-box input {
    border: none;
    flex: 1;
    padding: 12px 20px;
}

.search-box button {
    border: none;
    background: #2e7d32;
    color: white;
    padding: 0 20px;
}

.section {
    padding: 50px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 15px 0;
}

.service-card, .product-card {
    min-width: 180px;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
}

.service-card i {
    font-size: 30px;
    color: green;
}

.arrow {
    border: none;
    background: #e8f5e9;
    padding: 6px 10px;
    border-radius: 50%;
}


footer {
    background: #1b5e20;
    color: white;
    padding: 40px 0;
}
