.contact-card {
    background-color: #fff;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    padding: 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* New pseudo-element for the background image */
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/portal/krste/img/bg-overlay.png'); /* New world map image */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.09; /* Opacity from the image */
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #003865;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.contact-info {
    font-family: "Lato", Sans-serif, serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #5E5F61;
    text-align: center;
    margin-bottom: 15px;
    min-height: 50px;
}

.contact-info i {
    color: #9DCE3A;
    margin-right: 8px;
}

.address {
    font-size: 0.9rem;
    color: #212529;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-card .tag {
    background: linear-gradient(90deg, rgba(217, 91, 20, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    color: #212529;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
