.section2 {
    widows: 100%;
    height: 100%;
}

.section2-cont {
    position: relative;
    width: 85%;
    margin-left: 7.5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-top: 15%;
}

.section2-shape {
    width: 250px;
    height: 250px;
    background-image: linear-gradient(70deg, #DC422A, blue);
    position: absolute;
    z-index: -1;
    margin-top: 15%;
    margin-left: 45%;
    border-radius: 20% 30% 80% 10%;
    filter: blur(25px);
    opacity: 0.5;
}

.section2-card {
    width: 100%;
    height: auto;
    position: relative;
}


.section2-card img {
    width: 100%;
    border-radius: 30px;
    height: auto;
    transition: 0.8s ease;
}

#section2-dj-img {
    border: 10px solid #320c6f;
    border-radius: 30px;
    transition: 0.8s ease;
}



.section2-card h2 {
    font-size: 40px;
    margin-top: 3%;
}

.section2-card p {
    width: 95%;
    opacity: 0.7;
    font-size: 16px;
    line-height: 28px;
    margin-top: -3%;
}

.section2-low-card {
    border-bottom: 1px solid rgba(89, 81, 112, 0.9);
    border-top: 1px solid rgba(89, 81, 112, 0.9);
    width: auto;
    height: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 30px 5px;
    margin-top: 7%;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.counter-number {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.counter-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    white-space: nowrap;
}

.counter-number.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Style for the plus sign */
.plus-sign {
    display: inline-block;
    margin-left: 2px;
}

/* Responsive design */
@media (max-width: 768px) {
    .section2-cont {
        position: relative;
        width: 90%;
        margin-left: 5%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 100px;
        margin-top: 15%;
    }

    .section2-low-card {
        flex-direction: column;
        gap: 30px;
        padding: 30px 40px;
    }

    .counter-number {
        font-size: 3rem;
    }

    .counter-label {
        font-size: 1rem;
    }

    .section2-low-card {
        border-bottom: 1px solid rgba(89, 81, 112, 0.9);
        border-top: 1px solid rgba(89, 81, 112, 0.9);
        width: auto;
        height: auto;
        display: flex;
        gap: 50px;
        align-items: center;
        padding: 30px 5px;
        margin-top: 7%;
    }
}