.about-image-hover {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-image-hover img {
    transition: all 0.3s ease;
}

.about-image-hover:hover img {
    transform: scale(1.1);
}

/* Watermark logo for practice areas section */
.section-md {
    position: relative;
}

/* .section-md::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('../images/new/asdg-1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
} */

.section-md .container {
    position: relative;
    z-index: 1;
}