/* CARD STRUCTURE */
.services-block-two .inner-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* IMAGE CONTAINER (IMPORTANT) */
.services-block-two .image {
    height: 250px; /* fixed height for all cards */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5; /* optional clean background */
}

/* IMAGE FIX (NO CUT) */
.services-block-two .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 🔥 NO CROPPING */
}

/* CONTENT ALIGNMENT */
.services-block-two .lower-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    padding: 15px;
}

/* FIX TEXT HEIGHT */
.designation {
    min-height: 80px; /* keeps all cards equal */
}

/* LEGAL TEXT */
.legal-text {
    color: #000;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.inner-box:hover .legal-text {
    color: #d4a84f; /* gold */
}

/* OPTIONAL HOVER CARD EFFECT */
.inner-box {
    transition: all 0.3s ease;
}

.inner-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}