.somnath-count-section {
    /* background: linear-gradient(to bottom, #0a1f3c 55%, #f3f8ff 45%); */
    background: var(--gredient-bg);
    padding: 70px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px 0px 0px 0px;
}

.somnath-count-header {
    margin-bottom: 40px;
}

.somnath-count-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.somnath-count-subtitle {
    color: #cbd5e1;
    font-size: 1rem;
    max-width: 650px;
    margin: 0 auto;
}


.somnath-count-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.somnath-count-card:hover {
    transform: translateY(-8px);
    border-bottom: 3px solid var(--text-ocan);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}



.somnath-count-icon-box {
    position: relative;
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.somnath-count-icon-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4158D0 0%, #08D9D6 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: somnathBlobMove 6s ease-in-out infinite alternate;
    z-index: 1;
    transition: 0.3s all ease;
}

.somnath-count-icon-box i {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    color: #ffffff;
}

@keyframes somnathBlobMove {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg) scale(1);
    }

    50% {
        border-radius: 40% 60% 50% 50% / 50% 60% 40% 60%;
        transform: rotate(90deg) scale(1.05);
    }

    100% {
        border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%;
        transform: rotate(180deg) scale(1);
    }
}

.somnath-count-number {
    font-size: 1.8rem;
    font-weight: 600 !important;
    color: #1e293b;
    margin-bottom: 5px;
}
/* .somnath-count-number span{
    font-size: 25px;
    font-weight: bold;
} */
.somnath-count-label {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 500;
}

/* @media (max-width: 991px) {
    .somnath-count-section {
        background: linear-gradient(to bottom, #0a1f3c 25%, #f3f8ff 75%);
    }
} */