﻿.about-us {
    background: linear-gradient(135deg, #f0f8ff, #c4def5);
    padding: 80px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-family: 'Roboto', sans-serif;
}

.about-title {
    color: #01579b;
    font-size: 2.5rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    word-spacing:7px; /*mobile*/
    text-align: start;
}

.strong {
color:snow;
font-weight:900;
background-color:red;
padding:0 10px;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-explore {
    display: inline-block;
    padding: 10px 25px;
    background-color: #01579b;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.6s ease;
    margin-bottom:50px;
}

    .btn-explore:hover {
        background-color: #013b6d;
    }

.map-wrapper {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.address-info {
    color: #01579b;
    font-size: 15px;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

.limarski-radovi {
    background-color: #b0cee8;
    padding: 30px 80px;
    align-items: center;
}


.service-card {
    zoom: 0.9;
    background: linear-gradient(135deg, #f0f8ff, #c4def5);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 450px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .service-card h3 {
        font-family: Loto;
        text-transform: uppercase;
        font-weight: 900;
        font-size: 30px;
    }

    .service-card p {
        text-align: center;
        color: #013b6d;
        font-size: 15px;
        line-height: 1.3;
        overflow: hidden;
    }

    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 25px;
    }

    .service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

