*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins';
    /* font-family: sans-serif; */
    box-sizing: border-box;
}
.head{
    width: 100%;
    background-color: #152238;
    height: 75px;
}
.img{

    width: 100%;
    height: 470px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-image:linear-gradient(to right,rgba(0, 0, 0, 0.612),rgba(0, 0, 0, 0.612)),url(eco-friendly-recycling-concept.png);
    background-size: cover;
    
}

.card{
    margin-top: 3%;
    /* border: 1px solid purple; */
    width: 100%;
    height: 2150px;
    display: block;
    box-sizing: border-box;
    /* column-gap: 20px; */
    /* padding: 50px; */
}
.cards{
    width: 100%;
    height: 500px;
    display: inline-flex;
    column-gap: 20px;
    padding: 50px;
}
.card .cards .card1{
    /* border: 1px solid red; */
    border-radius: 30px;
    height: 100%;
    width: 33%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.39);
}

.card1 img{
    position: relative;
    top: 0;
    transition: .5s;
    border-radius: 30px;
    width: 100%;
    height: 100%;
}
.card1 img:hover{
    filter: brightness(0.6);
    top: -20px;
    transition: .5s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.39);

    
}
.text{
    text-align: center;
    text-decoration: underline;
}

.responsive-img {
    width: 100%;
    height: auto;
    max-width: 300px; /* Optional: Limit the maximum width */
    display: block;
    margin: 0 auto;
}

/* Make images responsive */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Adjust layout for smaller screens */
@media (max-width: 768px) {
    .cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card1 {
        flex: 0 0 45%; /* Each card takes 45% of the width */
        margin: 10px;
    }
}

@media (max-width: 480px) {
    .card1 {
        flex: 0 0 100%; /* Each card takes full width */
        margin: 5px 0;
    }
}/* Make images responsive */
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Style the cards container */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Style individual cards */
.card1 {
    flex: 0 0 30%; /* Each card takes 30% of the width */
    max-width: 300px;
    text-align: center;
}

/* Adjust layout for tablets */
@media (max-width: 768px) {
    .card1 {
        flex: 0 0 45%; /* Each card takes 45% of the width */
    }
}

/* Adjust layout for mobile devices */
@media (max-width: 480px) {
    .card1 {
        flex: 0 0 100%; /* Each card takes full width */
    }
}

/* Add some spacing for text headers */
.text h1 {
    text-align: center;
    font-size: 1.5rem;
    margin: 20px 0;
}