
.environment-section {
    padding: 80px 20px;
    background: url(./pectures/enver.bg.jpg) no-repeat center / cover ;
    color: rgb(255, 255, 255);
    height: 120vh;
    background-attachment: fixed;
}
.top-space {
    height: 250px;
    background: linear-gradient(to bottom, rgb(255, 255, 255), #d8dede);
}

.env-item{
    padding: 12px;
    border: 1px solid rgb(78, 78, 78);
    background: rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); 
    border-radius: 12px  ;
}

.env-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.env-text { flex: 1.2; min-width: 350px; }

.section-title {
    color: #000000; 
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-family: Bahnschrift SemiBold;
    font-weight: 900;
}

.env-description {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #030303;
    margin-bottom: 40px;
    text-align: center;
}

.env-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.env-item i {
    font-size: 2rem;
    color: 	#008500;
    margin-bottom: 10px;
}

.env-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #00ff1a;
    text-shadow: 0px 0px 8px rgb(0, 0, 0);
    font-family: MS Gothic;
    font-weight: 700;
}
.env-item p{
    line-height: 1.5;
    color: #ffffff;
    font-weight: 800;
    font-family: Simplified Arabic;
}
.env-image {
    flex: 1;
    position: relative;
}

.env-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 10px 10px 30px #d9d9d9;
    
}

.env-image img:hover{
    transform: scale(1.009);
    transition: ease 0.3s;
     box-shadow: 10px 10px 60px #232323;
}
.eco-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #00840d;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-right: 20px;
    text-shadow: 5px 6px 8px rgb(0, 0, 0);
    font-family: MS Gothic;
}
/* Medium devices (tablets, max-width: 991px) */
@media (max-width: 991px) {
    .env-content {
        flex-direction: column;
        gap: 40px;
    }

    .env-text {
        min-width: 100%;
    }

    .env-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .env-description {
        font-size: 1.3rem;
        text-align: center;
    }

    .env-image img {
        width: 100%;
        height: auto;
    }

    .eco-badge {
        bottom: -15px;
        right: -15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Small devices (mobiles, max-width: 767px) */
@media (max-width: 767px) {
    .environment-section {
        padding: 60px 15px;
        height: auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .env-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 30px;
    }

    .env-item {
        padding: 10px;
    }

    .env-item h4 {
        font-size: 1rem;
    }

    .env-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .env-item i {
        font-size: 1.5rem;
    }

    .eco-badge {
        bottom: -10px;
        right: -10px;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}
