.aadhaarpay-section {
    padding: 60px 20px;
    background-color: #f8fbff;
    font-family: 'Inter', sans-serif;
    color: #001f3f;
    margin-top: 80px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0d0d43;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0d0d43;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #0d0d43;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    margin-top: 50px;
}

.btn-primary:hover {
    background-color: #001f3f;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
    min-height: 300px; /* fixed minimum height */
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0d0d43;
    min-height: 60px; /* adjust to keep all headings aligned */
}

.service-card p {
    font-size: 15px;
    color: #555;
    flex-grow: 1;
    margin-bottom: 10px;
}

.btn-primary {
    background-color: #0d0d43;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: inline-block;
    margin-top: 30px;
}
