
    .height-fit-contant{
        height: fit-content !important;
    }

    .card-body {
        flex: 1; /* Makes body stretch equally */
    }
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
        color: var(--primary);
        font-weight: 700;
    }

.service-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
    background: white;
    display: flex;
    flex-direction: column;
}

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

    .card-img-container {
        height: 300px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f0f7ff 0%, #e1eeff 100%);
    }


    .card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-2 .card-img{
        /* object-position: top; */
        object-position: 0px -20px;
    }

    .card-1 .card-img {
        /* object-position: 0px -90px; */
    }

    .card-title {
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.75rem;
    }

    .card-subtitle {
        color: var(--secondary);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .card-text {
        color: #555;
        line-height: 1.6;
    }
    .card-1 {
        border-bottom: 4px solid #4285f4;
    }

    .card-2 {
        border-bottom: 4px solid #34a853;
    }

    .dashboard-card-Instant .card-img {
        border-bottom-right-radius: 0px;
        border-bottom-left-radius: 0px;
    }



    .row.align-items-stretch {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

        .row.align-items-stretch > [class*="col-"] {
            display: flex;
        }

    

    .card-body {
        flex-grow: 1;
    }
