/* Counter Section */

.counter-section {
    background: rgb(255 255 255 / 0);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: 'NSS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 1;
    pointer-events: none;
}

.counter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.counter-header {
    text-align: center;
    margin-bottom: 10px;
}

.counter-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #014e60;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.counter-subtitle {
    font-size: 1.1rem;
    color: #012B3D;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.counter-item {
background: #ffffff;
    border-radius: 20px;
    padding: 8px 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(1, 78, 96, 0.1);
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.counter-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #014e60, #012B3D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(1, 78, 96, 0.3);
}

.counter-number {
    font-size: 1rem;
    font-weight: 900;
    color: #014e60;
    margin-bottom: 15px;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    color: #012B3D;
    font-weight: 600;
    line-height: 1.4;
}


/* Responsive Design */

@media (max-width: 1200px) {
    .counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
    }
    .counter-title {
        font-size: 2.5rem;
    }
    .counter-number {
        font-size: 2.5rem;
    }
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .counter-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .counter-item {
        padding: 30px 20px;
    }
    .counter-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .counter-number {
        font-size: 2rem;
    }
    .counter-label {
        font-size: 1rem;
    }
}