/* Wrapper */
.vaani-section-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Main Card */
.vaani-card {
    background-color: #001f3f;
    background: linear-gradient(135deg, #001f3f 0%, #001225 100%);
    color: #ffffff;
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 1;
}

/* --- BACKGROUND OVERLAY (Pattern REMOVED) --- */
.vaani-card::before {
    content: "";
    position: absolute;
    inset: 0;

    /* ❌ REMOVE PATTERN */
    background-image: none;

    pointer-events: none;
    z-index: -1;
}

/* Header */
.vaani-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.vaani-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
}

.vaani-header p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #d1d5db;
}

/* Content Area */
.vaani-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

/* Features */
.vaani-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.vaani-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.vaani-feature-item:hover {
    transform: translateX(10px);
}

.vaani-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    transition: all 0.5s ease;
}

.vaani-feature-item:hover .vaani-icon {
    background-color: #ffffff;
    color: #001f3f;
    /* transform: rotate(400deg); */
}

.vaani-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.vaani-text p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0;
}

/* Image */
.vaani-image {
    flex: 1;
    height: 100%;
    /* Ensure the container's border-radius matches the image's */
    border-radius: 15px;
    overflow: hidden;
}

.vaani-image img {
    width: 100%;
    height: auto;
    border: 3px solid #ffffff;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block;
    transition: transform 0.5s ease;
    box-sizing: border-box;
}

.vaani-image:hover img {
    transform: scale(1.05);
}

/* Stats Section */
.vaani-stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.vaani-stat-box {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px 10px;
    flex: 1;
    min-width: 150px;
    text-align: center;
    color: #001f3f;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: default;
}

.vaani-stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.vaani-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1;
}

.vaani-stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.vaani-stat-label::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #001f3f;
    margin-top: 5px;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vaani-stat-box:hover .vaani-stat-label::after {
    width: 50%;
    margin: 5px auto 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
    .vaani-content {
        flex-direction: column;
    }
    .vaani-image {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .vaani-card {
        padding: 30px 15px;
    }
    .vaani-stat-box {
        flex: 1 1 45%;
        margin-bottom: 10px;
    }
}
