.pollution-section {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pollution-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pollution-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pollution-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* height: 100%;
    width: 100%; */
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.pollution-slide.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.pollution-slide img {
    width: 100%;
    height: 550px;
    margin-bottom: 2.5rem;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

.pollution-info {
    padding: 0 2rem;
    max-width: 850px;
}

.pollution-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
}

.pollution-info p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    color: #dddddd;
}

.pollution-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.pollution-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #555;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pollution-dot.active {
    background-color: #fff;
    box-shadow: 0 0 5px white;
}

@media (max-width: 1280px) {
    .pollution-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pollution-section {
        padding: 4rem 1rem;
    }
    .pollution-carousel {
        height: auto;
    }
    .pollution-slide img {
        height: auto;
    }
    .pollution-info h3 {
        font-size: 1.5rem;
    }
    .pollution-info p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .pollution-title {
        font-size: 1.5rem;
    }
    .pollution-info h3 {
        font-size: 1.25rem;
    }
    .pollution-info p {
        font-size: 0.9rem;
    }
}
