/* HERO */
.hero{
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    color: #fff;
    overflow: hidden;
}

/* Black overlay */
.hero::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4); /* 👈 darkness control (0.3 - 0.6 best) */
    z-index: 1;
}

section.hero{
    height:250px;
}
/* Content ko upar lana */
.hero-text{
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin-left: 10%;
}

.hero h1 {
    font-size: 36px;
}

.hero span {
    color: #ff6a00;
}

.hero button {
    margin-top: 20px;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px 25px;
}

/* FEATURES */
.features {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #f2f2f2;
}

/* CATEGORY */
.category {
    text-align: center;
    padding: 40px;
}

.category h2 {
    margin-bottom: 30px;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cat {
    text-align: center;
}

.cat img {
    border: 2px solid #ff6a00;
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
}

.cat a {
    color: #404040;
    text-decoration: none;
}

/* BANNER */
.banner {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background: linear-gradient(to right, #ff6a00, #2e7d32);
    color: #fff;
}

.banner button {
    background: white;
    color: #ff6a00;
    padding: 10px 20px;
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 20px;
    }
    
    section.hero {
        height:100px;
    }
}
